Просмотр исходного кода

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

pull/1/head
10sr 10 лет назад
Родитель
Сommit
fd4de45344
1 измененных файлов: 4 добавлений и 1 удалений
  1. +4
    -1
      emacs.el

+ 4
- 1
emacs.el Просмотреть файл

@@ -908,7 +908,10 @@ found, otherwise returns nil."
(setq diff-switches "-u")
(add-hook 'diff-mode-hook
(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
:foreground nil
:background nil


Загрузка…
Отмена
Сохранить