diff options
author | Glenn Morris <rgm@gnu.org> | 2011-06-25 17:01:36 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-06-25 17:01:36 -0700 |
commit | ccf7a5d5c8a517e885acf48047b3a7d2dde57248 (patch) | |
tree | e702cc18c59f067e7dbdd3c71cc236774bd34164 /lisp/progmodes/f90.el | |
parent | e9246b20af60e248cb64c48cfabfe71d8955cd84 (diff) | |
download | emacs-ccf7a5d5c8a517e885acf48047b3a7d2dde57248.tar.gz |
Add some more F2008 font-locking for f90.el.
* lisp/progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re):
Add some F2008 stuff.
Diffstat (limited to 'lisp/progmodes/f90.el')
-rw-r--r-- | lisp/progmodes/f90.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el index eed87ecef9d..add0820d28b 100644 --- a/lisp/progmodes/f90.el +++ b/lisp/progmodes/f90.el @@ -311,8 +311,8 @@ The options are 'downcase-word, 'upcase-word, 'capitalize-word and nil." "deferred" "enum" "enumerator" "extends" "extends_type_of" "final" "generic" "import" "non_intrinsic" "non_overridable" "nopass" "pass" "protected" "same_type_as" "value" "volatile" - ;; F2008 - "contiguous" "submodule" + ;; F2008. + "contiguous" "submodule" "concurrent" ) 'words) "Regexp used by the function `f90-change-keywords'.") @@ -330,6 +330,10 @@ The options are 'downcase-word, 'upcase-word, 'capitalize-word and nil." ;; F2003. asynchronous separate. "abstract" "deferred" "import" "final" "non_intrinsic" "non_overridable" "nopass" "pass" "protected" "value" "volatile" + ;; F2008. + ;; "concurrent" is only in the sense of "do [,] concurrent", but given + ;; the [,] it's simpler to just do every instance (cf "do while"). + "contiguous" "concurrent" ) 'words) "Keyword-regexp for font-lock level >= 3.") |