aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-10-25 03:57:09 +0000
committerGlenn Morris2007-10-25 03:57:09 +0000
commitcb1e8a75403c4bc926bdad431b8740cbe03e7da2 (patch)
tree13822d9023280c9cdf1bc349f242cfecdf7730fb
parentd8e27e33f6597feca9a02073ce480e9abc182e66 (diff)
downloademacs-cb1e8a75403c4bc926bdad431b8740cbe03e7da2.tar.gz
emacs-cb1e8a75403c4bc926bdad431b8740cbe03e7da2.zip
(fortran-comment-line-start-skip, fortran-directive-re):
Mark these regexps as safe if they are strings.
-rw-r--r--lisp/progmodes/fortran.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el
index 5ec6e5d92fe..023e285659a 100644
--- a/lisp/progmodes/fortran.el
+++ b/lisp/progmodes/fortran.el
@@ -162,7 +162,7 @@ You might want to change this to \"*\", for instance."
162 :version "21.1" 162 :version "21.1"
163 :type 'regexp 163 :type 'regexp
164 :group 'fortran-comment) 164 :group 'fortran-comment)
165;; FIXME is an arbitrary regexp safe? 165(put 'fortran-comment-line-start-skip 'safe-local-variable 'stringp)
166 166
167(defcustom fortran-directive-re 167(defcustom fortran-directive-re
168 "^[ \t]*#.*" 168 "^[ \t]*#.*"
@@ -172,7 +172,7 @@ The matching line will be given zero indentation."
172 :version "22.1" 172 :version "22.1"
173 :type 'regexp 173 :type 'regexp
174 :group 'fortran-indent) 174 :group 'fortran-indent)
175;; FIXME is an arbitrary regexp safe? 175(put 'fortran-directive-re 'safe-local-variable 'stringp)
176 176
177(defcustom fortran-minimum-statement-indent-fixed 6 177(defcustom fortran-minimum-statement-indent-fixed 6
178 "Minimum statement indentation for fixed format continuation style." 178 "Minimum statement indentation for fixed format continuation style."