]> git.eshelyaron.com Git - emacs.git/commitdiff
(edebug): Finish `defgroup' description with period.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 4 Jul 2005 02:43:00 +0000 (02:43 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 4 Jul 2005 02:43:00 +0000 (02:43 +0000)
(edebug-display-freq-count): "?\ " -> "?\s".

lisp/emacs-lisp/edebug.el

index e998fdd7abc454a1cbc6575c20555cc12dd6f3af..55fa93775db573206ebb7048a84341d12f553524 100644 (file)
@@ -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))))