# HG changeset patch # User Chong Yidong # Date 1227805645 0 # Node ID 26f94bce1babc5d4fa761da4fd0eaa6bcb361e6e # Parent a3ef480379ae8ee57115eec49aecc1384f195b99 Tweak the previous doc fixes. diff -r a3ef480379ae -r 26f94bce1bab lisp/simple.el --- a/lisp/simple.el Thu Nov 27 17:01:50 2008 +0000 +++ b/lisp/simple.el Thu Nov 27 17:07:25 2008 +0000 @@ -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