summaryrefslogtreecommitdiff
path: root/lisp/completion.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2000-05-23 20:04:36 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2000-05-23 20:04:36 +0000
commit99d0735f52391243ae34dd77d0ae0dac50bbeb7c (patch)
treef34dbf3af8c4ec7cc6cb26c9923c4725d6c74e49 /lisp/completion.el
parente5eee690ffdc37ee963da26aa5c2d6cf2b0e85e4 (diff)
downloademacs-99d0735f52391243ae34dd77d0ae0dac50bbeb7c.tar.gz
(dynamic-completion-mode, dynamic-completion-mode): Don't quote lambdas.
Diffstat (limited to 'lisp/completion.el')
-rw-r--r--lisp/completion.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/completion.el b/lisp/completion.el
index 4dfb611f6b3..5d6eed2e205 100644
--- a/lisp/completion.el
+++ b/lisp/completion.el
@@ -2407,13 +2407,13 @@ TYPE is the type of the wrapper to be added. Can be :before or :under."
;; Install the appropriate mode tables.
(add-hook 'lisp-mode-hook
- '(lambda ()
+ (lambda ()
(setq cmpl-syntax-table cmpl-lisp-syntax-table)))
(add-hook 'c-mode-hook
- '(lambda ()
+ (lambda ()
(setq cmpl-syntax-table cmpl-c-syntax-table)))
(add-hook 'fortran-mode-hook
- '(lambda ()
+ (lambda ()
(setq cmpl-syntax-table cmpl-fortran-syntax-table)
(completion-setup-fortran-mode)))
@@ -2434,7 +2434,7 @@ TYPE is the type of the wrapper to be added. Can be :before or :under."
;; Save completions when killing Emacs.
(add-hook 'kill-emacs-hook
- '(lambda ()
+ (lambda ()
(kill-emacs-save-completions)
(cmpl-statistics-block
(record-cmpl-kill-emacs))))