Mercurial > emacs
changeset 64029:d4866c35bebd
(edebug): Finish `defgroup' description with period.
(edebug-display-freq-count): "?\ " -> "?\s".
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Mon, 04 Jul 2005 02:43:00 +0000 |
parents | 26cc453cc38d |
children | c2d80c96de71 |
files | lisp/emacs-lisp/edebug.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/edebug.el Mon Jul 04 02:41:08 2005 +0000 +++ b/lisp/emacs-lisp/edebug.el Mon Jul 04 02:43:00 2005 +0000 @@ -61,7 +61,7 @@ ;;; Options (defgroup edebug nil - "A source-level debugger for Emacs Lisp" + "A source-level debugger for Emacs Lisp." :group 'lisp) @@ -4224,7 +4224,7 @@ (- (current-column) (if (= ?\( (following-char)) 0 1))))) (insert (make-string - (max 0 (- col (- (point) start-of-count-line))) ?\ ) + (max 0 (- col (- (point) start-of-count-line))) ?\s) (if (and (< 0 count) (not (memq coverage '(unknown ok-coverage))))