]> git.eshelyaron.com Git - emacs.git/commitdiff
(help-do-arg-highlight): Recognize also ARG- followed by the opening bracket of
authorJuanma Barranquero <lekktu@gmail.com>
Sat, 18 Feb 2006 23:34:18 +0000 (23:34 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Sat, 18 Feb 2006 23:34:18 +0000 (23:34 +0000)
the following bracketing pairs: {}, [], (), <>, `' (for example, in the
docstring of `windmove-default-keybindings').

lisp/ChangeLog
lisp/help-fns.el

index fea20e0cc437577fd0bf39ed15ce316c48274a0f..42d6ab400c1db6287e045468f9faa9997a726323 100644 (file)
@@ -1,3 +1,9 @@
+2006-02-19  Juanma Barranquero  <lekktu@gmail.com>
+
+       * help-fns.el (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').
+
 2006-02-19  Nick Roberts  <nickrob@snap.net.nz>
 
        * progmodes/gud.el (gud-speedbar-buttons): Update properly for
@@ -8,7 +14,7 @@
        (gdb-var-update-handler): Detect out of scope variables with pre
        GDB 6.4 too.
        (gdb-post-prompt): Revert changet 2006-02-17 (force update).
-       Reset status of variable objexts to nil in update handlers.
+       Reset status of variable objects to nil in update handlers.
        (gdb-var-update-handler-1): Detect when a variable object comes
        in scope.  setcar on var changes gdb-var-list directly.
 
 
        (allout-flag-region): Use overlays instead of selective-display
        for invisible text - by inheritence from the properties of
-       allout-overlay-category in mainline emacs, and applied
-       property-by-property in xemacs, some recent versions of which
+       allout-overlay-category in mainline Emacs, and applied
+       property-by-property in XEmacs, some recent versions of which
        don't inherit the properties from the category.  Provisions to
        respond to concealed-text edits simplified drastically.
 
        ispell-buffer-local-dict instead of
        ispell-accept-buffer-local-defs.
        (ispell-local-dictionary-alist): Accept as valid any coding-system
-       supported by emacs.
+       supported by Emacs.
        (ispell-dictionary-alist-3): Esperanto dictionary's coding system
        changed to iso-8859-3.
 
 
        * speedbar.el (speedbar-frame-width): Make an inline function
        instead of a macro.  Use frame-width.
-       (speedbar-try-completion, speedbar-update-contents) 
+       (speedbar-try-completion, speedbar-update-contents)
        (speedbar-timer-fn): Use consp.
        (speedbar-update-localized-contents): Try to preserve point.
 
index 32719275eddfea89b7f10e131de770da9b1a50f9..d30fc02c409eae579ee0028ebd7f4dd44163f486 100644 (file)
@@ -252,6 +252,7 @@ face (according to `face-differs-from-default-p')."
                          "\\)"
                          "\\(?:es\\|s\\|th\\)?"  ; for ARGth, ARGs
                          "\\(?:-[a-z0-9-]+\\)?"  ; for ARG-xxx, ARG-n
+                         "\\(?:-[{([<`\"].*?\\)?"; for ARG-{x}, (x), <x>, [x], `x'
                          "\\>")                  ; end of word
                  (help-default-arg-highlight arg)
                  doc t t 1)))))