# HG changeset patch # User Juanma Barranquero # Date 1140305477 0 # Node ID 9dadad58610cf755e79e0b890c2d4e05f23b36b3 # Parent 3d9e09ba3ace30c214bb84e57958560105a9e0ab (help-do-arg-highlight): Recognize also ARG- followed by the opening bracket of the following bracketing pairs: {}, [], (), <>, `' (for example, in the docstring of `windmove-default-keybindings'). diff -r 3d9e09ba3ace -r 9dadad58610c lisp/help-fns.el --- a/lisp/help-fns.el Sat Feb 18 22:58:26 2006 +0000 +++ b/lisp/help-fns.el Sat Feb 18 23:31:17 2006 +0000 @@ -252,6 +252,7 @@ "\\)" "\\(?:es\\|s\\|th\\)?" ; for ARGth, ARGs "\\(?:-[a-z0-9-]+\\)?" ; for ARG-xxx, ARG-n + "\\(?:-[{([<`\"].*?\\)?"; for ARG-{x}, (x), , [x], `x' "\\>") ; end of word (help-default-arg-highlight arg) doc t t 1)))))