aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-04-09 19:14:47 -0700
committerGlenn Morris2010-04-09 19:14:47 -0700
commit0a23b2c3033d8eae52e0861aa5d3a66b628a99b5 (patch)
tree3ae4086e913676ac57e7b3996a35631eb61b4bd6
parent119850e9279ac597b11abd92e56c1989e72f7b04 (diff)
downloademacs-0a23b2c3033d8eae52e0861aa5d3a66b628a99b5.tar.gz
emacs-0a23b2c3033d8eae52e0861aa5d3a66b628a99b5.zip
Fix bug ref in previous.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/progmodes/fortran.el2
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6e06f5ec72b..fe1e4b25878 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -2,7 +2,7 @@
2 2
3 * progmodes/fortran.el (fortran-match-and-skip-declaration): 3 * progmodes/fortran.el (fortran-match-and-skip-declaration):
4 New function. 4 New function.
5 (fortran-font-lock-keywords-3): Use it. (Bug#1835) 5 (fortran-font-lock-keywords-3): Use it. (Bug#1385)
6 6
72010-04-07 Kenichi Handa <handa@m17n.org> 72010-04-07 Kenichi Handa <handa@m17n.org>
8 8
diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el
index 03f3bbc7af7..3784ba787c4 100644
--- a/lisp/progmodes/fortran.el
+++ b/lisp/progmodes/fortran.el
@@ -403,7 +403,7 @@ program\\|subroutine\\)\\>[ \t]*\\(\\sw+\\)?"
403 '("^ *\\([0-9]+\\)" . font-lock-constant-face))) 403 '("^ *\\([0-9]+\\)" . font-lock-constant-face)))
404 "Medium level highlighting for Fortran mode.") 404 "Medium level highlighting for Fortran mode.")
405 405
406;; See bug#1835. Never really looked into _why_ this matters... 406;; See bug#1385. Never really looked into _why_ this matters...
407(defun fortran-match-and-skip-declaration (limit) 407(defun fortran-match-and-skip-declaration (limit)
408 "Like `font-lock-match-c-style-declaration-item-and-skip-to-next'. 408 "Like `font-lock-match-c-style-declaration-item-and-skip-to-next'.
409The only difference is, it returns t in a case when the default returns nil." 409The only difference is, it returns t in a case when the default returns nil."