Small whitespace fix to improve readability of the lisp code in the .emacs
example.
This commit is contained in:
parent
12fd277e38
commit
36cbe51ebd
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=16430
1 changed files with 2 additions and 3 deletions
|
@ -2002,7 +2002,7 @@ else if (pid == 0) { /* child */
|
|||
(setq auto-mode-alist
|
||||
(append '(("\\.cpp$" . c++-mode)
|
||||
("\\.hpp$" . c++-mode)
|
||||
("\\.lsp$" . lisp-mode)
|
||||
("\\.lsp$" . lisp-mode)
|
||||
("\\.scm$" . scheme-mode)
|
||||
("\\.pl$" . perl-mode)
|
||||
) auto-mode-alist)))
|
||||
|
@ -2018,8 +2018,7 @@ else if (pid == 0) { /* child */
|
|||
"Associations between modes and keywords")
|
||||
|
||||
(defun font-lock-auto-mode-select ()
|
||||
"Automatically select font-lock-mode if the current major mode is
|
||||
in font-lock-auto-mode-list"
|
||||
"Automatically select font-lock-mode if the current major mode is in font-lock-auto-mode-list"
|
||||
(if (memq major-mode font-lock-auto-mode-list)
|
||||
(progn
|
||||
(font-lock-mode t))
|
||||
|
|
Loading…
Reference in a new issue