Explorar el Código

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

pull/1/head
10sr hace 10 años
padre
commit
fd4de45344
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      emacs.el

+ 4
- 1
emacs.el Ver fichero

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


Cargando…
Cancelar
Guardar