emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/progmodes/f90.el, v [EMACS_22_BASE]


From: Glenn Morris
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/f90.el, v [EMACS_22_BASE]
Date: Thu, 25 Oct 2007 04:00:42 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Branch:         EMACS_22_BASE
Changes by:     Glenn Morris <gm>       07/10/25 04:00:42

Index: f90.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/progmodes/f90.el,v
retrieving revision 1.94.2.3
retrieving revision 1.94.2.4
diff -u -b -r1.94.2.3 -r1.94.2.4
--- f90.el      23 Oct 2007 07:00:13 -0000      1.94.2.3
+++ f90.el      25 Oct 2007 04:00:42 -0000      1.94.2.4
@@ -213,13 +213,13 @@
   "*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."
@@ -246,7 +246,7 @@
 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."




reply via email to

[Prev in Thread] Current Thread [Next in Thread]