Browse Source

emacs.el: do not enable view-mode if major-mode is derived mode of diff-mode

pull/1/head
10sr 10 years ago
parent
commit
fd4de45344
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      emacs.el

+ 4
- 1
emacs.el View File

@@ -908,7 +908,10 @@ found, otherwise returns nil."
(setq diff-switches "-u") (setq diff-switches "-u")
(add-hook 'diff-mode-hook (add-hook 'diff-mode-hook
(lambda () (lambda ()
(view-mode 1)
(when (eq major-mode
'diff-mode)
;; do not pass when major-mode is derived mode of diff-mode
(view-mode 1))
(set-face-attribute 'diff-header nil (set-face-attribute 'diff-header nil
:foreground nil :foreground nil
:background nil :background nil


Loading…
Cancel
Save