diff options
| author | Richard M. Stallman | 2008-01-04 05:39:48 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2008-01-04 05:39:48 +0000 |
| commit | f7fdcecd7e456cfecd71d62cfb1c0d9642b85ca9 (patch) | |
| tree | 1e7cc38bccfef5cec2646fc632e88a5d30d4bf54 | |
| parent | 0f27a1fd6aa0090620f52034f87e9ca5b26843a6 (diff) | |
| download | emacs-f7fdcecd7e456cfecd71d62cfb1c0d9642b85ca9.tar.gz emacs-f7fdcecd7e456cfecd71d62cfb1c0d9642b85ca9.zip | |
(delete-selection-mode): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 11 | ||||
| -rw-r--r-- | lisp/delsel.el | 4 |
2 files changed, 13 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 958223c2855..2ee492aff86 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-01-04 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * delsel.el (delete-selection-mode): Doc fix. | ||
| 4 | |||
| 1 | 2008-01-04 Glenn Morris <rgm@gnu.org> | 5 | 2008-01-04 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * version.el (emacs-copyright): Update to 2008. | 7 | * version.el (emacs-copyright): Update to 2008. |
| @@ -23,6 +27,13 @@ | |||
| 23 | * textmodes/ispell.el (ispell-local-pdict): Add | 27 | * textmodes/ispell.el (ispell-local-pdict): Add |
| 24 | safe-local-variable properties. | 28 | safe-local-variable properties. |
| 25 | 29 | ||
| 30 | 2007-12-31 Richard Stallman <rms@gnu.org> | ||
| 31 | |||
| 32 | * cus-edit.el (custom-add-parent-links): New arg DOC-INITIAL-STRING. | ||
| 33 | Defaults for INITIAL-STRING and DOC-INITIAL-STRING do not include | ||
| 34 | `parent'. | ||
| 35 | (custom-group-value-create): Pass two args to custom-add-parent-links. | ||
| 36 | |||
| 26 | 2007-12-29 Richard Stallman <rms@gnu.org> | 37 | 2007-12-29 Richard Stallman <rms@gnu.org> |
| 27 | 38 | ||
| 28 | * font-lock.el (font-lock-prepend-text-property) | 39 | * font-lock.el (font-lock-prepend-text-property) |
diff --git a/lisp/delsel.el b/lisp/delsel.el index e33dac6c2f9..53b13c23b6f 100644 --- a/lisp/delsel.el +++ b/lisp/delsel.el | |||
| @@ -59,8 +59,8 @@ | |||
| 59 | ;;;###autoload | 59 | ;;;###autoload |
| 60 | (define-minor-mode delete-selection-mode | 60 | (define-minor-mode delete-selection-mode |
| 61 | "Toggle Delete Selection mode. | 61 | "Toggle Delete Selection mode. |
| 62 | With prefix ARG, turn Delete Selection mode on if and only if ARG is | 62 | With prefix ARG, turn Delete Selection mode on if ARG is |
| 63 | positive. | 63 | positive, off if ARG is not positive. |
| 64 | 64 | ||
| 65 | When Delete Selection mode is enabled, Transient Mark mode is also | 65 | When Delete Selection mode is enabled, Transient Mark mode is also |
| 66 | enabled and typed text replaces the selection if the selection is | 66 | enabled and typed text replaces the selection if the selection is |