diff options
| -rw-r--r-- | lisp/progmodes/fortran.el | 4 |
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." |