From 4f6e4ad6cdd5717068e16ccaac8da7c123807646 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 13 May 1993 03:14:07 +0000 Subject: (Setting minor-mode-map-alist): Put the map directly in the alist, not a variable name. --- lisp/progmodes/compile.el | 12 ++++++------ lisp/vc.el | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 1fd7bfdd54..7bca70da1d 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -31,7 +31,7 @@ ;;;###autoload (defvar compilation-mode-hook nil - "*List of hook functions run by compilation-mode (see `run-hooks').") + "*List of hook functions run by `compilation-mode' (see `run-hooks').") ;;;###autoload (defconst compilation-window-height nil @@ -336,7 +336,7 @@ Returns the compilation buffer created." (define-key map "\M-{" 'compilation-previous-file) (define-key map "\M-}" 'compilation-next-file) map) - "Keymap for compilation-minor-mode.") + "Keymap for `compilation-minor-mode'.") (defvar compilation-mode-map (let ((map (cons 'keymap compilation-minor-mode-map))) @@ -344,7 +344,7 @@ Returns the compilation buffer created." (define-key map "\^?" 'scroll-down) map) "Keymap for compilation log buffers. -compilation-minor-mode-map is a cdr of this.") +`compilation-minor-mode-map' is a cdr of this.") (defun compilation-mode () "Major mode for compilation log buffers. @@ -380,8 +380,8 @@ Compilation major mode are available.") (setq minor-mode-alist (cons '(compilation-minor-mode " Compilation") minor-mode-alist))) (or (assq 'compilation-minor-mode minor-mode-map-alist) - (setq minor-mode-map-alist (cons '(compilation-minor-mode - . compilation-minor-mode-map) + (setq minor-mode-map-alist (cons (cons 'compilation-minor-mode + compilation-minor-mode-map) minor-mode-map-alist))) (defun compilation-minor-mode (&optional arg) @@ -441,7 +441,7 @@ See `compilation-mode'." (defun compilation-filter (proc string) "Process filter for compilation buffers. -Just inserts the text, but uses insert-before-markers." +Just inserts the text, but uses `insert-before-markers'." (save-excursion (set-buffer (process-buffer proc)) (let ((buffer-read-only nil)) diff --git a/lisp/vc.el b/lisp/vc.el index 3e0f41f700..6073ebe86d 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -830,7 +830,7 @@ the variable `vc-header-alist'." (or (not (boundp 'minor-mode-map-alist)) (assq 'vc-dired-mode minor-mode-map-alist) (setq minor-mode-map-alist - (cons '(vc-dired-mode . vc-dired-prefix-map) + (cons (cons 'vc-dired-mode vc-dired-prefix-map) minor-mode-map-alist))) (defun vc-dired-mode () -- cgit v1.2.3