+2012-07-18 Masatake YAMATO <yamato@redhat.com>
+
+ * progmodes/sh-script.el (sh-imenu-generic-expression):
+ Capture a function with `function' keyword and without parentheses
+ like "function FOO" (bug#11856).
+
2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
* window.el (split-window-sensibly): Make WINDOW argument
* descr-text.el (describe-char): Fix format args. (Bug#10129)
2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
+
Final renames and doc fixes for movement commands (bug#11899).
- * progmodes/python.el (python-nav-beginning-of-statement): Rename
- from python-nav-statement-start.
+ * progmodes/python.el (python-nav-beginning-of-statement):
+ Rename from python-nav-statement-start.
(python-nav-end-of-statement): Rename from
python-nav-statement-end.
(python-nav-beginning-of-block): Rename from
2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
- * progmodes/python.el (python-shell-send-string-no-output): Allow
- accept-process-output to quit, keeping shell process ready for
+ * progmodes/python.el (python-shell-send-string-no-output):
+ Allow accept-process-output to quit, keeping shell process ready for
future interactions (Bug#11868).
2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
(defcustom sh-imenu-generic-expression
`((sh
. ((nil
- "^\\s-*\\(function\\s-+\\)?\\([[:alpha:]_][[:alnum:]_]+\\)\\s-*()"
- 2))))
+ ;; function FOO
+ ;; function FOO()
+ "^\\s-*function\\s-+\\\([[:alpha:]_][[:alnum:]_]+\\)\\s-*\\(?:()\\)?"
+ 1)
+ ;; FOO()
+ (nil
+ "^\\s-*\\([[:alpha:]_][[:alnum:]_]+\\)\\s-*()"
+ 1)
+ )))
"Alist of regular expressions for recognizing shell function definitions.
See `sh-feature' and `imenu-generic-expression'."
:type '(alist :key-type (symbol :tag "Shell")