From: Glenn Morris Date: Tue, 14 May 2013 19:29:35 +0000 (-0400) Subject: * f90.el (f90-imenu-generic-expression): Fix typo in 2013-05-08 change. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~2026^2~229^2~83 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0ac0fecb1517ea7fd82e25c365528c8c44d1c11e;p=emacs.git * f90.el (f90-imenu-generic-expression): Fix typo in 2013-05-08 change. (Bug#14402) --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4207866beb5..d39c434cb6f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2013-05-14 Glenn Morris + + * progmodes/f90.el (f90-imenu-generic-expression): + Fix typo in 2013-05-08 change. (Bug#14402) + 2013-05-14 Jean-Philippe Gravel * progmodes/gdb-mi.el (gdb-running, gdb-starting): Remove diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el index 3471bbbe384..a8f53d397d6 100644 --- a/lisp/progmodes/f90.el +++ b/lisp/progmodes/f90.el @@ -981,7 +981,7 @@ Set subexpression 1 in the match-data to the name of the type." ("Submodules" "^[ \t0-9]*submodule[ \t]*([^)\n]+)[ \t]*\ \\(\\(?:\\sw\\|\\s_\\)+\\)[ \t]*\\(!\\|$\\)" 1) ("Modules" "^[ \t0-9]*module[ \t]+\\(\\(?:\\sw\\|\\s_\\)+\\)[ \t]*\\(!\\|$\\)" 1) - '("Types" f90-imenu-type-matcher 1) + ("Types" f90-imenu-type-matcher 1) ;; Does not handle: "type[, stuff] :: foo". ;;(format "^[ \t0-9]*type[ \t]+\\(\\(%s\\|i%s\\|is\\(?:\\sw\\|\\s_\\)\\)\\(?:\\sw\\|\\s_\\)*\\)" ;; not-ib not-s)