Kaynağa Gözat

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

pull/1/head
10sr 10 yıl önce
ebeveyn
işleme
fd4de45344
1 değiştirilmiş dosya ile 4 ekleme ve 1 silme
  1. +4
    -1
      emacs.el

+ 4
- 1
emacs.el Dosyayı Görüntüle

@@ -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


Yükleniyor…
İptal
Kaydet