diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-08-07 19:23:36 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-08-08 11:15:33 +0200 |
commit | 4b5414abbc01a3b4ae441d28e96b0f3f46a487fb (patch) | |
tree | d08d865ca9128521e13844f4522d9ca1ec4207cb /lisp/textmodes/ispell.el | |
parent | 9b661ff1a8e0fc3fc809a42a187356d6cb5ad2c9 (diff) | |
download | emacs-4b5414abbc01a3b4ae441d28e96b0f3f46a487fb.tar.gz emacs-4b5414abbc01a3b4ae441d28e96b0f3f46a487fb.tar.bz2 emacs-4b5414abbc01a3b4ae441d28e96b0f3f46a487fb.zip |
Clean up some local variable sections
* lisp/filesets.el:
* lisp/mh-e/mh-*.el:
* lisp/progmodes/python.el (python): Don't set options that are
already set in .dir-locals.el.
* lisp/textmodes/ispell.el: Remove redundant local variables.
* lisp/gnus/nnmaildir.el: Remove local variables that conflicts with
Emacs defaults.
Diffstat (limited to 'lisp/textmodes/ispell.el')
-rw-r--r-- | lisp/textmodes/ispell.el | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 8c8522a6e5e..f85d0aba9cf 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el @@ -4235,17 +4235,10 @@ Both should not be used to define a buffer-local dictionary." ;;; LOCAL VARIABLES AND BUFFER-LOCAL VALUE EXAMPLES. -;; Local Variable options: -;; mode: name(-mode) -;; eval: expression -;; local-variable: value - ;; The following sets the buffer local dictionary to `american' English ;; and spell checks only comments. ;; Local Variables: -;; mode: emacs-lisp -;; comment-column: 40 ;; ispell-check-comments: exclusive ;; ispell-local-dictionary: "american" ;; End: |