diff options
| author | Glenn Morris | 2010-10-26 23:50:28 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-10-26 23:50:28 -0700 |
| commit | 208d109c18bf5a1de184b4d3c70748ca4d68aeef (patch) | |
| tree | a97cd6d81d39d85d86a0952d3d93aa669a3dfd26 | |
| parent | 1bcc463741851fb2322b3d4b7c90d308f2235b75 (diff) | |
| download | emacs-208d109c18bf5a1de184b4d3c70748ca4d68aeef.tar.gz emacs-208d109c18bf5a1de184b4d3c70748ca4d68aeef.zip | |
* abbrev.el (abbrev-mode): Remove one of the three definitions of this variable.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/abbrev.el | 15 |
2 files changed, 5 insertions, 13 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f8199549d7f..1dccc73bda1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2010-10-27 Glenn Morris <rgm@gnu.org> | 1 | 2010-10-27 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * abbrev.el (abbrev-mode): Remove one of the three definitions of this | ||
| 4 | variable. | ||
| 5 | |||
| 3 | * server.el (server-host, server-port, server-auth-dir): Autoload risky. | 6 | * server.el (server-host, server-port, server-auth-dir): Autoload risky. |
| 4 | 7 | ||
| 5 | * term/ns-win.el: Restore require of cl when compiling. | 8 | * term/ns-win.el: Restore require of cl when compiling. |
diff --git a/lisp/abbrev.el b/lisp/abbrev.el index 6e48360587f..1c21aee5662 100644 --- a/lisp/abbrev.el +++ b/lisp/abbrev.el | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ;;; abbrev.el --- abbrev mode commands for Emacs | 1 | ;;; abbrev.el --- abbrev mode commands for Emacs |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1985, 1986, 1987, 1992, 2001, 2002, 2003, 2004, | 3 | ;; Copyright (C) 1985, 1986, 1987, 1992, 2001, 2002, 2003, 2004, 2005, |
| 4 | ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. | 4 | ;; 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; Maintainer: FSF | 6 | ;; Maintainer: FSF |
| 7 | ;; Keywords: abbrev convenience | 7 | ;; Keywords: abbrev convenience |
| @@ -59,16 +59,6 @@ With optional argument ARG, turn abbrev mode on if ARG is | |||
| 59 | positive, otherwise turn it off. In Abbrev mode, inserting an | 59 | positive, otherwise turn it off. In Abbrev mode, inserting an |
| 60 | abbreviation causes it to expand and be replaced by its expansion.") | 60 | abbreviation causes it to expand and be replaced by its expansion.") |
| 61 | 61 | ||
| 62 | (defcustom abbrev-mode nil | ||
| 63 | "Enable or disable Abbrev mode. | ||
| 64 | Non-nil means automatically expand abbrevs as they are inserted. | ||
| 65 | |||
| 66 | Setting this variable with `setq' changes it for the current buffer. | ||
| 67 | Changing it with \\[customize] sets the default value. | ||
| 68 | Interactively, use the command `abbrev-mode' | ||
| 69 | to enable or disable Abbrev mode in the current buffer." | ||
| 70 | :type 'boolean | ||
| 71 | :group 'abbrev-mode) | ||
| 72 | (put 'abbrev-mode 'safe-local-variable 'booleanp) | 62 | (put 'abbrev-mode 'safe-local-variable 'booleanp) |
| 73 | 63 | ||
| 74 | 64 | ||
| @@ -927,5 +917,4 @@ SORTFUN is passed to `sort' to change the default ordering." | |||
| 927 | 917 | ||
| 928 | (provide 'abbrev) | 918 | (provide 'abbrev) |
| 929 | 919 | ||
| 930 | ;; arch-tag: dbd6f3ae-dfe3-40ba-b00f-f9e3ff960df5 | ||
| 931 | ;;; abbrev.el ends here | 920 | ;;; abbrev.el ends here |