aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2008-05-07 02:59:40 +0000
committerGlenn Morris <[email protected]>2008-05-07 02:59:40 +0000
commita4c687e03e292e9472ab0a2f8fe8c2638b1c271c (patch)
tree7c1b6c1d65a32b1d8584d7193326604acdaad974
parent93fd3b3010cae8a68ec0e00684ddacb78a52c537 (diff)
(fortran-mode): Fix font-lock-syntactic-keywords oddness.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/progmodes/fortran.el2
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6da44486f5..f1d081cce2 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
+2008-05-07 Glenn Morris <[email protected]>
+
+ * subr.el (ignore-errors): Move here from cl-macs.el.
+ * emacs-lisp/cl-macs.el (ignore-errors): Move to subr.el.
+
+ * progmodes/fortran.el (fortran-mode): Fix font-lock-syntactic-keywords
+ oddness.
+
2008-05-06 Eric S. Raymond <[email protected]>
* vc-hooks.el (vc-find-file-hook),
diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el
index 3d6d2914a5..467237ae1a 100644
--- a/lisp/progmodes/fortran.el
+++ b/lisp/progmodes/fortran.el
@@ -849,7 +849,7 @@ with no args, if that value is non-nil."
nil t ((?/ . "$/") ("_$" . "w"))
fortran-beginning-of-subprogram
(font-lock-syntactic-keywords
- . (fortran-font-lock-syntactic-keywords))))
+ . fortran-font-lock-syntactic-keywords)))
(set (make-local-variable 'imenu-case-fold-search) t)
(set (make-local-variable 'imenu-generic-expression)
fortran-imenu-generic-expression)