aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-05-07 02:59:40 +0000
committerGlenn Morris2008-05-07 02:59:40 +0000
commita4c687e03e292e9472ab0a2f8fe8c2638b1c271c (patch)
tree7c1b6c1d65a32b1d8584d7193326604acdaad974
parent93fd3b3010cae8a68ec0e00684ddacb78a52c537 (diff)
downloademacs-a4c687e03e292e9472ab0a2f8fe8c2638b1c271c.tar.gz
emacs-a4c687e03e292e9472ab0a2f8fe8c2638b1c271c.zip
(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 6da44486f50..f1d081cce2a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
12008-05-07 Glenn Morris <rgm@gnu.org>
2
3 * subr.el (ignore-errors): Move here from cl-macs.el.
4 * emacs-lisp/cl-macs.el (ignore-errors): Move to subr.el.
5
6 * progmodes/fortran.el (fortran-mode): Fix font-lock-syntactic-keywords
7 oddness.
8
12008-05-06 Eric S. Raymond <esr@snark.thyrsus.com> 92008-05-06 Eric S. Raymond <esr@snark.thyrsus.com>
2 10
3 * vc-hooks.el (vc-find-file-hook), 11 * vc-hooks.el (vc-find-file-hook),
diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el
index 3d6d2914a5c..467237ae1a6 100644
--- a/lisp/progmodes/fortran.el
+++ b/lisp/progmodes/fortran.el
@@ -849,7 +849,7 @@ with no args, if that value is non-nil."
849 nil t ((?/ . "$/") ("_$" . "w")) 849 nil t ((?/ . "$/") ("_$" . "w"))
850 fortran-beginning-of-subprogram 850 fortran-beginning-of-subprogram
851 (font-lock-syntactic-keywords 851 (font-lock-syntactic-keywords
852 . (fortran-font-lock-syntactic-keywords)))) 852 . fortran-font-lock-syntactic-keywords)))
853 (set (make-local-variable 'imenu-case-fold-search) t) 853 (set (make-local-variable 'imenu-case-fold-search) t)
854 (set (make-local-variable 'imenu-generic-expression) 854 (set (make-local-variable 'imenu-generic-expression)
855 fortran-imenu-generic-expression) 855 fortran-imenu-generic-expression)