diff options
author | Andreas Schwab <schwab@suse.de> | 2003-08-02 22:06:12 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2003-08-02 22:06:12 +0000 |
commit | a1ff29b98a40cc1f543634cffb7d3f0430e7db5b (patch) | |
tree | 619adf22bbdaa829cd9c037472439942b8918628 /lisp/dabbrev.el | |
parent | 80f5d2efec87d768484439bb58d5b0b0253f108d (diff) | |
download | emacs-a1ff29b98a40cc1f543634cffb7d3f0430e7db5b.tar.gz emacs-a1ff29b98a40cc1f543634cffb7d3f0430e7db5b.tar.bz2 emacs-a1ff29b98a40cc1f543634cffb7d3f0430e7db5b.zip |
Don't redo key bindings on loading, put them only in loaddefs.el.
Diffstat (limited to 'lisp/dabbrev.el')
-rw-r--r-- | lisp/dabbrev.el | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lisp/dabbrev.el b/lisp/dabbrev.el index 202cb9edf74..11a8aac6f6e 100644 --- a/lisp/dabbrev.el +++ b/lisp/dabbrev.el @@ -1,6 +1,6 @@ ;;; dabbrev.el --- dynamic abbreviation package -;; Copyright (C) 1985, 86, 92, 94, 96, 1997, 2000, 2001 +;; Copyright (C) 1985, 86, 92, 94, 96, 1997, 2000, 01, 2003 ;; Free Software Foundation, Inc. ;; Author: Don Morrison @@ -357,11 +357,9 @@ this list.") ;; Exported functions ;;---------------------------------------------------------------- -;;;###autoload -(define-key esc-map "/" 'dabbrev-expand) +;;;###autoload (define-key esc-map "/" 'dabbrev-expand) ;;;??? Do we want this? -;;;###autoload -(define-key esc-map [?\C-/] 'dabbrev-completion) +;;;###autoload (define-key esc-map [?\C-/] 'dabbrev-completion) ;;;###autoload (defun dabbrev-completion (&optional arg) |