diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-04-19 15:44:55 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-04-19 15:44:55 +0200 |
commit | 06b605171f1c9d8b42bd3326a243b8b03d2e4e58 (patch) | |
tree | e96c135042999136bf0e75d113aae306e51983e3 /lisp/dabbrev.el | |
parent | 04c569546ad52f6270d8fc6d4aa0750950a0ac05 (diff) | |
download | emacs-06b605171f1c9d8b42bd3326a243b8b03d2e4e58.tar.gz emacs-06b605171f1c9d8b42bd3326a243b8b03d2e4e58.tar.bz2 emacs-06b605171f1c9d8b42bd3326a243b8b03d2e4e58.zip |
lisp/*.el: Lexical-binding cleanup.
Diffstat (limited to 'lisp/dabbrev.el')
-rw-r--r-- | lisp/dabbrev.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/dabbrev.el b/lisp/dabbrev.el index 00e9cd60cfe..00e2ec802e2 100644 --- a/lisp/dabbrev.el +++ b/lisp/dabbrev.el @@ -391,8 +391,7 @@ then it searches *all* buffers." dabbrev-case-fold-search) (or (not dabbrev-upcase-means-case-search) (string= abbrev (downcase abbrev))))) - (my-obarray dabbrev--last-obarray) - init) + (my-obarray dabbrev--last-obarray)) (save-excursion ;;-------------------------------- ;; New abbreviation to expand. |