(edebug): Finish `defgroup' description with period.
(edebug-display-freq-count): "?\ " -> "?\s".
This commit is contained in:
parent
25d1fc94f9
commit
ea400c880a
1 changed files with 2 additions and 2 deletions
|
@ -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))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue