diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-07-04 02:43:00 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-07-04 02:43:00 +0000 |
commit | ea400c880aa173b2e419c7236ec90f861716ea1c (patch) | |
tree | eba336cfad9c61f98dcc5c3e65e5ad0dcbbfed67 /lisp/emacs-lisp/edebug.el | |
parent | 25d1fc94f92cd9b512a6cb4be620ac07ad86ee5e (diff) | |
download | emacs-ea400c880aa173b2e419c7236ec90f861716ea1c.tar.gz emacs-ea400c880aa173b2e419c7236ec90f861716ea1c.tar.bz2 emacs-ea400c880aa173b2e419c7236ec90f861716ea1c.zip |
(edebug): Finish `defgroup' description with period.
(edebug-display-freq-count): "?\ " -> "?\s".
Diffstat (limited to 'lisp/emacs-lisp/edebug.el')
-rw-r--r-- | lisp/emacs-lisp/edebug.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index e998fdd7abc..55fa93775db 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el @@ -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 @@ reinstrument it." (- (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)))) |