diff options
| author | Juri Linkov | 2004-06-06 02:49:56 +0000 |
|---|---|---|
| committer | Juri Linkov | 2004-06-06 02:49:56 +0000 |
| commit | 575f611801bfef5fffb76969232830eaf04ea17d (patch) | |
| tree | f2608804a45a45dfcbe311d4961504b8b1e05a51 | |
| parent | ec85856c24a284cbf6560722fa8999ead820d8a7 (diff) | |
| download | emacs-575f611801bfef5fffb76969232830eaf04ea17d.tar.gz emacs-575f611801bfef5fffb76969232830eaf04ea17d.zip | |
(help-argument-name): Add :group 'help.
| -rw-r--r-- | lisp/ChangeLog | 16 | ||||
| -rw-r--r-- | lisp/help-fns.el | 3 |
2 files changed, 17 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 077a25d6ef4..edff6ce362e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,17 @@ | |||
| 1 | 2004-06-05 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * bindings.el (debug-ignored-errors): Add regexps for history | ||
| 4 | related messages. Remove $ from "No further undo information". | ||
| 5 | Move Ediff's messages to ediff.el. | ||
| 6 | |||
| 7 | * ediff.el: Move Ediff's debug-ignored-errors from bindings.el. | ||
| 8 | |||
| 9 | * cus-edit.el (custom-display): Add `min-colors'. | ||
| 10 | |||
| 11 | * custom.el (defface): Add `supports' to docstring. | ||
| 12 | |||
| 13 | * help-fns.el (help-argument-name): Add :group 'help. | ||
| 14 | |||
| 1 | 2004-06-05 Luc Teirlinck <teirllm@auburn.edu> | 15 | 2004-06-05 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 16 | ||
| 3 | * find-dired.el (find-ls-subdir-switches): New user option. | 17 | * find-dired.el (find-ls-subdir-switches): New user option. |
| @@ -3266,7 +3280,7 @@ | |||
| 3266 | if the source location can't be found. | 3280 | if the source location can't be found. |
| 3267 | (edebug-compute-previous-result): Use prin1-char. | 3281 | (edebug-compute-previous-result): Use prin1-char. |
| 3268 | 3282 | ||
| 3269 | * emacs-lisp/checkdoc.el (checkdoc-error): Dont' assume point-min == 1. | 3283 | * emacs-lisp/checkdoc.el (checkdoc-error): Don't assume point-min == 1. |
| 3270 | (debug-ignored-errors): Add an entry. | 3284 | (debug-ignored-errors): Add an entry. |
| 3271 | 3285 | ||
| 3272 | * emacs-lisp/bytecomp.el (byte-recompile-directory): Ignore hidden dir. | 3286 | * emacs-lisp/bytecomp.el (byte-recompile-directory): Ignore hidden dir. |
diff --git a/lisp/help-fns.el b/lisp/help-fns.el index e8655e8f972..eb15bc7726f 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el | |||
| @@ -239,7 +239,8 @@ KIND should be `var' for a variable or `subr' for a subroutine." | |||
| 239 | 239 | ||
| 240 | ;;;###autoload | 240 | ;;;###autoload |
| 241 | (defface help-argument-name '((t :inherit italic)) | 241 | (defface help-argument-name '((t :inherit italic)) |
| 242 | "Face to highlight argument names in *Help* buffers.") | 242 | "Face to highlight argument names in *Help* buffers." |
| 243 | :group 'help) | ||
| 243 | 244 | ||
| 244 | (defun help-default-arg-highlight (arg) | 245 | (defun help-default-arg-highlight (arg) |
| 245 | "Default function to highlight arguments in *Help* buffers. | 246 | "Default function to highlight arguments in *Help* buffers. |