diff options
| author | Chong Yidong | 2012-04-22 15:19:29 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-04-22 15:19:29 +0800 |
| commit | d55486c7f89d12ab799c7bf631b86fb0ccf52e52 (patch) | |
| tree | 7fce05e742f90561b9ebac8d4bf8ffda8abd8c6c | |
| parent | d6d0cf1f187c03656b65dfd7e1f547e798d6f877 (diff) | |
| download | emacs-d55486c7f89d12ab799c7bf631b86fb0ccf52e52.tar.gz emacs-d55486c7f89d12ab799c7bf631b86fb0ccf52e52.zip | |
* simple.el (delete-active-region): Move to killing custom group.
| -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 020e5c4b9bc..eb293610a67 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-04-22 Chong Yidong <cyd@gnu.org> | ||
| 2 | |||
| 3 | * simple.el (delete-active-region): Move to killing custom group. | ||
| 4 | |||
| 1 | 2012-04-21 Andreas Schwab <schwab@linux-m68k.org> | 5 | 2012-04-21 Andreas Schwab <schwab@linux-m68k.org> |
| 2 | 6 | ||
| 3 | * progmodes/which-func.el (which-func-current): Quote % | 7 | * progmodes/which-func.el (which-func-current): Quote % |
diff --git a/lisp/simple.el b/lisp/simple.el index 0ee19b71636..4187e296439 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -817,7 +817,7 @@ instead of deleted." | |||
| 817 | :type '(choice (const :tag "Delete active region" t) | 817 | :type '(choice (const :tag "Delete active region" t) |
| 818 | (const :tag "Kill active region" kill) | 818 | (const :tag "Kill active region" kill) |
| 819 | (const :tag "Do ordinary deletion" nil)) | 819 | (const :tag "Do ordinary deletion" nil)) |
| 820 | :group 'editing | 820 | :group 'killing |
| 821 | :version "24.1") | 821 | :version "24.1") |
| 822 | 822 | ||
| 823 | (defun delete-backward-char (n &optional killflag) | 823 | (defun delete-backward-char (n &optional killflag) |