]> git.eshelyaron.com Git - emacs.git/commitdiff
(dynamic-completion-mode, dynamic-completion-mode): Don't quote lambdas.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 23 May 2000 20:04:36 +0000 (20:04 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 23 May 2000 20:04:36 +0000 (20:04 +0000)
lisp/completion.el

index 4dfb611f6b3cb7a8f6c6b06fe2c5dac793e3691d..5d6eed2e205efd4eea27d34451a31c3f07dff078 100644 (file)
@@ -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))))