]> git.eshelyaron.com Git - emacs.git/commitdiff
(f90-indented-comment-re, f90-directive-comment-re)
authorGlenn Morris <rgm@gnu.org>
Thu, 25 Oct 2007 03:58:45 +0000 (03:58 +0000)
committerGlenn Morris <rgm@gnu.org>
Thu, 25 Oct 2007 03:58:45 +0000 (03:58 +0000)
(f90-break-delimiters): Mark these regexps as safe if they are strings.

lisp/progmodes/f90.el

index c590b1c55b2fc3dab7d51d8d7db5fe944235edc4..29ffbcfe6b10fe639e6bd4549e65f87d3b65be68 100644 (file)
   "Regexp matching comments to indent as code."
   :type  'regexp
   :group 'f90-indent)
-;; FIXME are arbitrary regexps safe? Only used in looking-at.
+(put 'f90-indented-comment-re 'safe-local-variable 'stringp)
 
 (defcustom f90-directive-comment-re "!hpf\\$"
   "Regexp of comment-like directive like \"!HPF\\\\$\", not to be indented."
   :type  'regexp
   :group 'f90-indent)
-;; FIXME are arbitrary regexps safe? Only used in looking-at.
+(put 'f90-directive-comment-re 'safe-local-variable 'stringp)
 
 (defcustom f90-beginning-ampersand t
   "Non-nil gives automatic insertion of \& at start of continuation line."
@@ -262,7 +262,7 @@ matching this regexp that should not be split, and these are
 specified by the constant `f90-no-break-re'."
   :type  'regexp
   :group 'f90)
-;; FIXME are arbitrary regexps safe? Used in re-search-backward.
+(put 'f90-break-delimiters 'safe-local-variable 'stringp)
 
 (defcustom f90-break-before-delimiters t
   "Non-nil causes `f90-do-auto-fill' to break lines before delimiters."