diff options
| author | Chong Yidong | 2012-12-09 11:44:59 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-12-09 11:44:59 +0800 |
| commit | 2c066ad3ae3723168aa1f333a98dabcd2ced5024 (patch) | |
| tree | e47a258d9bc0cf5c3cd68393133a5e1ad03b9d75 /lisp | |
| parent | a06ae17da2c6eb3c0e53fb3c9de555da71796af0 (diff) | |
| download | emacs-2c066ad3ae3723168aa1f333a98dabcd2ced5024.tar.gz emacs-2c066ad3ae3723168aa1f333a98dabcd2ced5024.zip | |
* simple.el (set-mark-default-inactive): Mark for removal after 24.3.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/simple.el | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1efcd623e2a..37d6e340399 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-12-09 Chong Yidong <cyd@gnu.org> | ||
| 2 | |||
| 3 | * simple.el (set-mark-default-inactive): Mark as obsolete, for | ||
| 4 | removal after 24.3. | ||
| 5 | |||
| 1 | 2012-12-08 Dani Moncayo <dmoncayo@gmail.com> | 6 | 2012-12-08 Dani Moncayo <dmoncayo@gmail.com> |
| 2 | 7 | ||
| 3 | * simple.el (just-one-space): Doc fix. | 8 | * simple.el (just-one-space): Doc fix. |
diff --git a/lisp/simple.el b/lisp/simple.el index 61a5a3ea10b..389df0cde4e 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -4135,11 +4135,12 @@ after C-u \\[set-mark-command]." | |||
| 4135 | 4135 | ||
| 4136 | (defcustom set-mark-default-inactive nil | 4136 | (defcustom set-mark-default-inactive nil |
| 4137 | "If non-nil, setting the mark does not activate it. | 4137 | "If non-nil, setting the mark does not activate it. |
| 4138 | This causes \\[set-mark-command] and \\[exchange-point-and-mark] to | 4138 | This option does the same thing as disabling Transient Mark mode, |
| 4139 | behave the same whether or not `transient-mark-mode' is enabled." | 4139 | and it will be removed in the near future." |
| 4140 | :type 'boolean | 4140 | :type 'boolean |
| 4141 | :group 'editing-basics | 4141 | :group 'editing-basics |
| 4142 | :version "23.1") | 4142 | :version "23.1") |
| 4143 | (make-obsolete-variable 'set-mark-default-inactive nil "24.3") | ||
| 4143 | 4144 | ||
| 4144 | (defun set-mark-command (arg) | 4145 | (defun set-mark-command (arg) |
| 4145 | "Set the mark where point is, or jump to the mark. | 4146 | "Set the mark where point is, or jump to the mark. |