diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 12 | ||||
-rw-r--r-- | lisp/emacs-lisp/edebug.el | 4 |
2 files changed, 14 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f2f954807a1..83b18d1fbc0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,15 @@ +2003-10-21 Richard M. Stallman <rms@gnu.org> + + * emacs-lisp/edebug.el (edebug-display-freq-count): Doc fix. + + * ls-lisp.el (ls-lisp-insert-directory): Arg is now wildcard-regexp. + Don't check for foo*/ wildcard form here. + (insert-directory): Recognize foo*/ as a wildcard. + Separate wildcard-regexp variable from the arg, wildcard. + + * subr.el (add-hook): Correctly detect when make-local-hook was used. + (remove-hook): Correctly handle strange cases about local hooks. + 2003-10-21 David Ponce <david@dponce.com> * ruler-mode.el (ruler-mode-left-fringe-cols): Add new optional diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index 2f26fce27cb..74ea2f37b22 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el @@ -4145,8 +4145,8 @@ You must include newlines in FMT to break lines, but one newline is appended." ;;; Frequency count and coverage (defun edebug-display-freq-count () - "Display the frequency count data for each line of the current -definition. The frequency counts are inserted as comment lines after + "Display the frequency count data for each line of the current definition. +The frequency counts are inserted as comment lines after each line, and you can undo all insertions with one `undo' command. The counts are inserted starting under the `(' before an expression |