aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-08-03 03:19:36 +0000
committerGlenn Morris2007-08-03 03:19:36 +0000
commit62ce2ec5dc6b20be08a36962f88a18eb690b8707 (patch)
tree4c9b22e6ea2a3c2e7da6237e229833bd56171205
parent52f55ab02b3f9b97a3894b7651b9ffffa2755eba (diff)
downloademacs-62ce2ec5dc6b20be08a36962f88a18eb690b8707.tar.gz
emacs-62ce2ec5dc6b20be08a36962f88a18eb690b8707.zip
(fortran-font-lock-syntactic-keywords): Fix off-by-one error in
previous change.
-rw-r--r--lisp/progmodes/fortran.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el
index 37db236c99f..97f4c1c2616 100644
--- a/lisp/progmodes/fortran.el
+++ b/lisp/progmodes/fortran.el
@@ -441,7 +441,7 @@ Consists of level 3 plus all other intrinsics not already highlighted.")
441This varies according to the value of `fortran-line-length'. 441This varies according to the value of `fortran-line-length'.
442This is used to fontify fixed-format Fortran comments." 442This is used to fontify fixed-format Fortran comments."
443 `(("^[cd\\*]" 0 (11)) 443 `(("^[cd\\*]" 0 (11))
444 (,(format "^[^cd\\*\t\n].\\{%d\\}\\([^\n]+\\)" fortran-line-length) 444 (,(format "^[^cd\\*\t\n].\\{%d\\}\\([^\n]+\\)" (1- fortran-line-length))
445 1 (11)))) 445 1 (11))))
446 446
447(defvar fortran-font-lock-keywords fortran-font-lock-keywords-1 447(defvar fortran-font-lock-keywords fortran-font-lock-keywords-1