diff options
author | Glenn Morris <rgm@gnu.org> | 2008-04-26 02:46:56 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-04-26 02:46:56 +0000 |
commit | 1ea193a2b6414ac6186de0840e5b734c7d82a810 (patch) | |
tree | 90dd6266a895ec92b44010f85ebdd8746d2f122b /lisp/progmodes/f90.el | |
parent | da3cc79d77c36aba05a948fc357288cfb40adfd9 (diff) | |
download | emacs-1ea193a2b6414ac6186de0840e5b734c7d82a810.tar.gz |
Comments.
Diffstat (limited to 'lisp/progmodes/f90.el')
-rw-r--r-- | lisp/progmodes/f90.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el index 38f3bacf002..f93093bbce5 100644 --- a/lisp/progmodes/f90.el +++ b/lisp/progmodes/f90.el @@ -39,7 +39,6 @@ ;; To facilitate typing, a fairly complete list of abbreviations is provided. ;; All abbreviations begin with the backquote character "`" -;; (this requires modification of the syntax-table). ;; For example, `i expands to integer (if abbrev-mode is on). ;; There are two separate features for altering the appearance of code: @@ -601,6 +600,8 @@ logical\\|double[ \t]*precision\\|type[ \t]*(\\sw+)\\|none\\)[ \t]*" (list f90-keywords-level-3-re f90-operators-re + ;; FIXME why isn't this font-lock-builtin-face, which + ;; otherwise we hardly use, as in fortran.el? (list f90-procedures-re '(1 font-lock-keyword-face keep)) "\\<real\\>" ; avoid overwriting real defs ;; As an attribute, but not as an optional argument. |