aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2005-07-04 02:43:00 +0000
committerJuanma Barranquero2005-07-04 02:43:00 +0000
commitea400c880aa173b2e419c7236ec90f861716ea1c (patch)
treeeba336cfad9c61f98dcc5c3e65e5ad0dcbbfed67
parent25d1fc94f92cd9b512a6cb4be620ac07ad86ee5e (diff)
downloademacs-ea400c880aa173b2e419c7236ec90f861716ea1c.tar.gz
emacs-ea400c880aa173b2e419c7236ec90f861716ea1c.zip
(edebug): Finish `defgroup' description with period.
(edebug-display-freq-count): "?\ " -> "?\s".
-rw-r--r--lisp/emacs-lisp/edebug.el4
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 @@
61;;; Options 61;;; Options
62 62
63(defgroup edebug nil 63(defgroup edebug nil
64 "A source-level debugger for Emacs Lisp" 64 "A source-level debugger for Emacs Lisp."
65 :group 'lisp) 65 :group 'lisp)
66 66
67 67
@@ -4224,7 +4224,7 @@ reinstrument it."
4224 (- (current-column) 4224 (- (current-column)
4225 (if (= ?\( (following-char)) 0 1))))) 4225 (if (= ?\( (following-char)) 0 1)))))
4226 (insert (make-string 4226 (insert (make-string
4227 (max 0 (- col (- (point) start-of-count-line))) ?\ ) 4227 (max 0 (- col (- (point) start-of-count-line))) ?\s)
4228 (if (and (< 0 count) 4228 (if (and (< 0 count)
4229 (not (memq coverage 4229 (not (memq coverage
4230 '(unknown ok-coverage)))) 4230 '(unknown ok-coverage))))