diff options
author | Andreas Schwab <schwab@suse.de> | 2004-04-03 20:02:16 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2004-04-03 20:02:16 +0000 |
commit | 5c84686c48f49474e4b5b59ab859ff56fc7248d2 (patch) | |
tree | a7274efdf971f27c6d21f524555914bfe3ec5d8d /lisp | |
parent | 9f691b0dd903205d12e447c753bcd92741c68707 (diff) | |
download | emacs-5c84686c48f49474e4b5b59ab859ff56fc7248d2.tar.gz emacs-5c84686c48f49474e4b5b59ab859ff56fc7248d2.tar.bz2 emacs-5c84686c48f49474e4b5b59ab859ff56fc7248d2.zip |
(diff-mode): Fix missing quote.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/diff-mode.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6e693be77c2..6ee0d985040 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2004-04-03 Andreas Schwab <schwab@suse.de> + + * diff-mode.el (diff-mode): Fix missing quote. + 2004-04-03 Juri Linkov <juri@jurta.org> * descr-text.el (describe-property-list): Add `font-lock-face'. diff --git a/lisp/diff-mode.el b/lisp/diff-mode.el index 180fefcdd72..c235c8cf6d2 100644 --- a/lisp/diff-mode.el +++ b/lisp/diff-mode.el @@ -936,7 +936,7 @@ a diff with \\[diff-reverse-direction]." (add-hook 'view-mode-hook `(lambda () (setq minor-mode-overriding-map-alist - (delq ,ro-bind minor-mode-overriding-map-alist))) + (delq ',ro-bind minor-mode-overriding-map-alist))) nil t)) ;; add-log support (set (make-local-variable 'add-log-current-defun-function) |