(edebug): Finish `defgroup' description with period.

(edebug-display-freq-count): "?\ " -> "?\s".
This commit is contained in:
Juanma Barranquero 2005-07-04 02:43:00 +00:00
parent 25d1fc94f9
commit ea400c880a

View 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))))