diff options
| author | Richard M. Stallman | 1999-04-08 16:26:38 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1999-04-08 16:26:38 +0000 |
| commit | 5cf1c7acbf6b014075f7a9e5862ed87c68dd29f6 (patch) | |
| tree | 75a996b7e652df0d2ff9452164a9b65960a5993a | |
| parent | b9482d15fc48e2447c7f55122d94c8047e0261e4 (diff) | |
| download | emacs-5cf1c7acbf6b014075f7a9e5862ed87c68dd29f6.tar.gz emacs-5cf1c7acbf6b014075f7a9e5862ed87c68dd29f6.zip | |
(abbrev-mode): Customizing sets the default value.
| -rw-r--r-- | lisp/abbrev.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/abbrev.el b/lisp/abbrev.el index 394f1ddd424..c6133be034f 100644 --- a/lisp/abbrev.el +++ b/lisp/abbrev.el | |||
| @@ -48,12 +48,12 @@ and be replaced by its expansion." | |||
| 48 | 48 | ||
| 49 | (defcustom abbrev-mode nil | 49 | (defcustom abbrev-mode nil |
| 50 | "Toggle abbrev mode. | 50 | "Toggle abbrev mode. |
| 51 | In abbrev mode, inserting an abbreviation causes it to expand | 51 | Non-nil means automatically expand abbrevs as they are inserted. |
| 52 | and be replaced by its expansion. | 52 | |
| 53 | This variable should be set only with \\[customize], which is equivalent | 53 | This variable automatically becomes buffer-local when set in any fashion. |
| 54 | to using the function `abbrev-mode'." | 54 | Changing it with \\[customize] sets the default value. |
| 55 | :set (lambda (symbol value) | 55 | Use the command `abbrev-mode' to enable or disable Abbrev mode in the current |
| 56 | (abbrev-mode (if value 1 0))) | 56 | buffer." |
| 57 | :type 'boolean | 57 | :type 'boolean |
| 58 | :group 'abbrev-mode) | 58 | :group 'abbrev-mode) |
| 59 | 59 | ||