emacs.samples: Reliably override ".dir-locals.el".

Back-patch to 9.4, where .dir-locals.el was introduced.
This commit is contained in:
Noah Misch 2014-06-13 19:57:18 -04:00
parent 3f8c23c4d3
commit 81300ea444
1 changed files with 6 additions and 1 deletions

View File

@ -30,7 +30,12 @@
(add-hook 'c-mode-hook
(defun postgresql-c-mode-hook ()
(when (string-match "/postgres\\(ql\\)?/" buffer-file-name)
(c-set-style "postgresql"))))
(c-set-style "postgresql")
;; Don't override the style we just set with the style in
;; `dir-locals-file'. Emacs 23.4.1 needs this; it is obsolete,
;; albeit harmless, by Emacs 24.3.1.
(set (make-local-variable 'ignored-local-variables)
(append '(c-file-style) ignored-local-variables)))))
;;; Perl files