diff options
| author | Andreas Schwab | 2004-04-03 20:02:16 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2004-04-03 20:02:16 +0000 |
| commit | 5c84686c48f49474e4b5b59ab859ff56fc7248d2 (patch) | |
| tree | a7274efdf971f27c6d21f524555914bfe3ec5d8d | |
| parent | 9f691b0dd903205d12e447c753bcd92741c68707 (diff) | |
| download | emacs-5c84686c48f49474e4b5b59ab859ff56fc7248d2.tar.gz emacs-5c84686c48f49474e4b5b59ab859ff56fc7248d2.zip | |
(diff-mode): Fix missing quote.
| -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 @@ | |||
| 1 | 2004-04-03 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * diff-mode.el (diff-mode): Fix missing quote. | ||
| 4 | |||
| 1 | 2004-04-03 Juri Linkov <juri@jurta.org> | 5 | 2004-04-03 Juri Linkov <juri@jurta.org> |
| 2 | 6 | ||
| 3 | * descr-text.el (describe-property-list): Add `font-lock-face'. | 7 | * 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]." | |||
| 936 | (add-hook 'view-mode-hook | 936 | (add-hook 'view-mode-hook |
| 937 | `(lambda () | 937 | `(lambda () |
| 938 | (setq minor-mode-overriding-map-alist | 938 | (setq minor-mode-overriding-map-alist |
| 939 | (delq ,ro-bind minor-mode-overriding-map-alist))) | 939 | (delq ',ro-bind minor-mode-overriding-map-alist))) |
| 940 | nil t)) | 940 | nil t)) |
| 941 | ;; add-log support | 941 | ;; add-log support |
| 942 | (set (make-local-variable 'add-log-current-defun-function) | 942 | (set (make-local-variable 'add-log-current-defun-function) |