Forked from tkf/workaround-mumamo-buffer-file-name-warnings.el
Last active
December 26, 2015 06:39
-
-
Save mavit/7109806 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Workaround the annoying warnings: | |
;; Warning (mumamo-per-buffer-local-vars): | |
;; Already 'permanent-local t: buffer-file-name | |
(when (version<= "24.2" emacs-version) | |
(eval-after-load "mumamo" | |
'(setq mumamo-per-buffer-local-vars | |
(delq 'buffer-file-name mumamo-per-buffer-local-vars)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment