]> code.delx.au - gnu-emacs/blobdiff - lisp/completion.el
(isearch-resume-enabled): New variable.
[gnu-emacs] / lisp / completion.el
index 4dfb611f6b3cb7a8f6c6b06fe2c5dac793e3691d..152f72cab3db9b1cc5007de30637e6e67a62d001 100644 (file)
@@ -1204,7 +1204,7 @@ Must be called after `find-exact-completion'."
 
 (defun locate-completion-db-error ()
   ;; recursive error: really scrod
-  (error "Completion database corrupted.  Try M-x clear-all-completions.  Send bug report."))
+  (error "Completion database corrupted.  Try M-x clear-all-completions.  Send bug report"))
 
 ;; WRITES
 (defun add-completion-to-tail-if-new (string)
@@ -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))))