diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-09-18 16:04:51 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-09-18 16:04:51 +0000 |
commit | e2bd460ac235ae5b7511d0d6cc30b580351883a6 (patch) | |
tree | a21f15019316674ade0e0a74f46fcf8dd78dd094 /lisp | |
parent | 261cca8832d07c2332410b20fd1227043d280c14 (diff) | |
download | emacs-e2bd460ac235ae5b7511d0d6cc30b580351883a6.tar.gz |
(menu-bar-search-menu): Nicer help string.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 29 | ||||
-rw-r--r-- | lisp/menu-bar.el | 2 |
2 files changed, 30 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 33df6f51d17..4b18ff1811e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,32 @@ +2002-09-18 Richard M. Stallman <rms@gnu.org> + + * menu-bar.el (menu-bar-search-menu): Nicer help string. + + * replace.el (occur-engine-add-prefix): Use 7 spaces. + (occur-engine): Use 7 digits to align tabs in the data. + + * emacs-lisp/bytecomp.el (byte-compile-output-docform): + Don't make the definition dynamic if it shares structure + with the arg list. + + * gud.el (gud-pdb-marker-regexp): Allow : and \ in file name. + (pdb): In gud-remove, pass down the file name. + + * cus-dep.el (custom-make-dependencies): Sort MEMBERS before use. + +2002-09-18 Luc Teirlinck <teirllm@mail.auburn.edu> + + * ielm.el: (*1, *2, *3): New variables. + (ielm-eval-input): Make temporary buffers current on entry and + exit to the let bindings for *, ** and ***. + (inferior-emacs-lisp-mode): Mention *1, *2 and *3 in the docstring. + Do not overrule global bindings for *, ** and ***. + +2002-09-18 Tom Tromey <tromey@redhat.com> + + * progmodes/make-mode.el (makefile-fill-paragraph): Find comment + boundaries before filling. + 2002-09-18 Kai Gro,A_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> * dired.el (dired-insert-directory): Never add "--dired" when diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index edee0b89d97..e773492343b 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el @@ -282,7 +282,7 @@ A large number or nil slows down menu responsiveness." (define-key menu-bar-search-menu [i-search] (list 'menu-item "Incremental Search" menu-bar-i-search-menu - :help "Incremental Search")) + :help "Incremental Search finds partial matches while you type the search string.\nIt is most convenient from the keyboard. Try it!")) (define-key menu-bar-search-menu [separator-tag-isearch] '(menu-item "--")) |