diff options
author | Glenn Morris <rgm@gnu.org> | 2013-05-14 15:29:35 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-05-14 15:29:35 -0400 |
commit | 0ac0fecb1517ea7fd82e25c365528c8c44d1c11e (patch) | |
tree | 3cbf10e67b6c5d403e2eaac1e0cbbacd7c9c13c3 /lisp/progmodes/f90.el | |
parent | 2e78e6a7949165d17081d375681393c5f9845dc6 (diff) | |
download | emacs-0ac0fecb1517ea7fd82e25c365528c8c44d1c11e.tar.gz |
* f90.el (f90-imenu-generic-expression): Fix typo in 2013-05-08 change.
(Bug#14402)
Diffstat (limited to 'lisp/progmodes/f90.el')
-rw-r--r-- | lisp/progmodes/f90.el | 2 |
1 files changed, 1 insertions, 1 deletions
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) |