diff options
| author | Juanma Barranquero | 2006-02-18 23:34:18 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2006-02-18 23:34:18 +0000 |
| commit | dee503e5c3fc1663e1e4fbd7eb7f2c93532134c3 (patch) | |
| tree | ca035a3fca347dad33340b80f08ef9f19a627c7d /lisp | |
| parent | 054d409eaff2f96f891582ed132d1125b574d364 (diff) | |
| download | emacs-dee503e5c3fc1663e1e4fbd7eb7f2c93532134c3.tar.gz emacs-dee503e5c3fc1663e1e4fbd7eb7f2c93532134c3.zip | |
(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').
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 16 | ||||
| -rw-r--r-- | lisp/help-fns.el | 1 |
2 files changed, 12 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fea20e0cc43..42d6ab400c1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2006-02-19 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * help-fns.el (help-do-arg-highlight): Recognize also ARG- followed by | ||
| 4 | the opening bracket of the following bracketing pairs: {}, [], (), <>, | ||
| 5 | `' (for example, in the docstring of `windmove-default-keybindings'). | ||
| 6 | |||
| 1 | 2006-02-19 Nick Roberts <nickrob@snap.net.nz> | 7 | 2006-02-19 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 8 | ||
| 3 | * progmodes/gud.el (gud-speedbar-buttons): Update properly for | 9 | * progmodes/gud.el (gud-speedbar-buttons): Update properly for |
| @@ -8,7 +14,7 @@ | |||
| 8 | (gdb-var-update-handler): Detect out of scope variables with pre | 14 | (gdb-var-update-handler): Detect out of scope variables with pre |
| 9 | GDB 6.4 too. | 15 | GDB 6.4 too. |
| 10 | (gdb-post-prompt): Revert changet 2006-02-17 (force update). | 16 | (gdb-post-prompt): Revert changet 2006-02-17 (force update). |
| 11 | Reset status of variable objexts to nil in update handlers. | 17 | Reset status of variable objects to nil in update handlers. |
| 12 | (gdb-var-update-handler-1): Detect when a variable object comes | 18 | (gdb-var-update-handler-1): Detect when a variable object comes |
| 13 | in scope. setcar on var changes gdb-var-list directly. | 19 | in scope. setcar on var changes gdb-var-list directly. |
| 14 | 20 | ||
| @@ -187,8 +193,8 @@ | |||
| 187 | 193 | ||
| 188 | (allout-flag-region): Use overlays instead of selective-display | 194 | (allout-flag-region): Use overlays instead of selective-display |
| 189 | for invisible text - by inheritence from the properties of | 195 | for invisible text - by inheritence from the properties of |
| 190 | allout-overlay-category in mainline emacs, and applied | 196 | allout-overlay-category in mainline Emacs, and applied |
| 191 | property-by-property in xemacs, some recent versions of which | 197 | property-by-property in XEmacs, some recent versions of which |
| 192 | don't inherit the properties from the category. Provisions to | 198 | don't inherit the properties from the category. Provisions to |
| 193 | respond to concealed-text edits simplified drastically. | 199 | respond to concealed-text edits simplified drastically. |
| 194 | 200 | ||
| @@ -218,7 +224,7 @@ | |||
| 218 | ispell-buffer-local-dict instead of | 224 | ispell-buffer-local-dict instead of |
| 219 | ispell-accept-buffer-local-defs. | 225 | ispell-accept-buffer-local-defs. |
| 220 | (ispell-local-dictionary-alist): Accept as valid any coding-system | 226 | (ispell-local-dictionary-alist): Accept as valid any coding-system |
| 221 | supported by emacs. | 227 | supported by Emacs. |
| 222 | (ispell-dictionary-alist-3): Esperanto dictionary's coding system | 228 | (ispell-dictionary-alist-3): Esperanto dictionary's coding system |
| 223 | changed to iso-8859-3. | 229 | changed to iso-8859-3. |
| 224 | 230 | ||
| @@ -226,7 +232,7 @@ | |||
| 226 | 232 | ||
| 227 | * speedbar.el (speedbar-frame-width): Make an inline function | 233 | * speedbar.el (speedbar-frame-width): Make an inline function |
| 228 | instead of a macro. Use frame-width. | 234 | instead of a macro. Use frame-width. |
| 229 | (speedbar-try-completion, speedbar-update-contents) | 235 | (speedbar-try-completion, speedbar-update-contents) |
| 230 | (speedbar-timer-fn): Use consp. | 236 | (speedbar-timer-fn): Use consp. |
| 231 | (speedbar-update-localized-contents): Try to preserve point. | 237 | (speedbar-update-localized-contents): Try to preserve point. |
| 232 | 238 | ||
diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 32719275edd..d30fc02c409 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el | |||
| @@ -252,6 +252,7 @@ face (according to `face-differs-from-default-p')." | |||
| 252 | "\\)" | 252 | "\\)" |
| 253 | "\\(?:es\\|s\\|th\\)?" ; for ARGth, ARGs | 253 | "\\(?:es\\|s\\|th\\)?" ; for ARGth, ARGs |
| 254 | "\\(?:-[a-z0-9-]+\\)?" ; for ARG-xxx, ARG-n | 254 | "\\(?:-[a-z0-9-]+\\)?" ; for ARG-xxx, ARG-n |
| 255 | "\\(?:-[{([<`\"].*?\\)?"; for ARG-{x}, (x), <x>, [x], `x' | ||
| 255 | "\\>") ; end of word | 256 | "\\>") ; end of word |
| 256 | (help-default-arg-highlight arg) | 257 | (help-default-arg-highlight arg) |
| 257 | doc t t 1))))) | 258 | doc t t 1))))) |