emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp simple.el


From: Chong Yidong
Subject: [Emacs-diffs] emacs/lisp simple.el
Date: Thu, 27 Nov 2008 17:07:25 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Chong Yidong <cyd>      08/11/27 17:07:25

Modified files:
        lisp           : simple.el 

Log message:
        Tweak the previous doc fixes.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/simple.el?cvsroot=emacs&r1=1.956&r2=1.957

Patches:
Index: simple.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/simple.el,v
retrieving revision 1.956
retrieving revision 1.957
diff -u -b -r1.956 -r1.957
--- simple.el   27 Nov 2008 17:01:50 -0000      1.956
+++ simple.el   27 Nov 2008 17:07:25 -0000      1.957
@@ -3503,9 +3503,9 @@
 If non-nil, region-aware commands treat the region as active as
 long as the mark is active, even if the region is empty.
 
-\"Region-aware\" commands are those that act on the region if it
-is active and Transient Mark mode is enabled, and on the text
-near point otherwise."
+Region-aware commands are those that act on the region if it is
+active and Transient Mark mode is enabled, and on the text near
+point otherwise."
   :type 'boolean
   :version "23.1"
   :group 'editing-basics)
@@ -3526,10 +3526,10 @@
 (defun region-active-p ()
   "Return t if Transient Mark mode is enabled and the mark is active.
 
-Commands that act on the region if it is active and Transient
-Mark mode is enabled, and on the text near point otherwise,
-should use `use-region-p' instead.  That function checks the
-value of `use-empty-active-region' as well."
+Most commands that act on the region if it is active and
+Transient Mark mode is enabled, and on the text near point
+otherwise, should use `use-region-p' instead.  That function
+checks the value of `use-empty-active-region' as well."
   (and transient-mark-mode mark-active))
 
 (defvar mark-ring nil




reply via email to

[Prev in Thread] Current Thread [Next in Thread]