diff options
| -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 @@ | |||
| 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)))) |