diff options
| author | Artur Malabarba | 2015-02-24 22:50:44 -0300 |
|---|---|---|
| committer | Artur Malabarba | 2015-02-24 22:51:15 -0300 |
| commit | 341e5f3c867f25c33a18dfe3e2ed369e6fb58c66 (patch) | |
| tree | 49975d045aa9e33ef90fdf754795a08d76255ae7 | |
| parent | 450bebaec94611f0958e13e35faf494e17931f8e (diff) | |
| download | emacs-341e5f3c867f25c33a18dfe3e2ed369e6fb58c66.tar.gz emacs-341e5f3c867f25c33a18dfe3e2ed369e6fb58c66.zip | |
simple.el (region-active-p): Fix doc to say non-nil.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/simple.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b152a752115..76f9eb40194 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2015-02-25 Artur Malabarba <bruce.connor.am@gmail.com> | ||
| 2 | |||
| 3 | * simple.el (region-active-p): Fix doc to say non-nil. | ||
| 4 | |||
| 1 | 2015-02-24 Samer Masterson <nosefrog@gmail.com> | 5 | 2015-02-24 Samer Masterson <nosefrog@gmail.com> |
| 2 | 6 | ||
| 3 | * eshell/em-hist.el (eshell-hist-parse-word-designator): | 7 | * eshell/em-hist.el (eshell-hist-parse-word-designator): |
diff --git a/lisp/simple.el b/lisp/simple.el index b78286dc83b..2f09042d817 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -4865,7 +4865,7 @@ For some commands, it may be appropriate to ignore the value of | |||
| 4865 | (or use-empty-active-region (> (region-end) (region-beginning))))) | 4865 | (or use-empty-active-region (> (region-end) (region-beginning))))) |
| 4866 | 4866 | ||
| 4867 | (defun region-active-p () | 4867 | (defun region-active-p () |
| 4868 | "Return t if Transient Mark mode is enabled and the mark is active. | 4868 | "Return non-nil if Transient Mark mode is enabled and the mark is active. |
| 4869 | 4869 | ||
| 4870 | Some commands act specially on the region when Transient Mark | 4870 | Some commands act specially on the region when Transient Mark |
| 4871 | mode is enabled. Usually, such commands should use | 4871 | mode is enabled. Usually, such commands should use |