diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-10-21 22:28:49 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-10-21 22:28:49 +0200 |
commit | cf294d78a1d25c5c5178ce3fc7fdddc0de58b904 (patch) | |
tree | f0668b3883e1b708057300741a0b39d567e4ebb5 /lisp | |
parent | 7e5f3a809109fc9643739bea2113563805618df2 (diff) | |
download | emacs-cf294d78a1d25c5c5178ce3fc7fdddc0de58b904.tar.gz emacs-cf294d78a1d25c5c5178ce3fc7fdddc0de58b904.tar.bz2 emacs-cf294d78a1d25c5c5178ce3fc7fdddc0de58b904.zip |
Tiny clean-up of previous edebug patch
* lisp/emacs-lisp/edebug.el (edebug--overlay-breakpoints): Clean
up code slightly.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emacs-lisp/edebug.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index 9c85ae3dd3d..7a40ca36b8f 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el @@ -3258,7 +3258,7 @@ the breakpoint." (overlay-put overlay 'help-echo "Breakpoint") (overlay-put overlay 'face 'edebug-enabled-breakpoint)))) (overlay-put overlay 'edebug t) - (let ((fringe (make-overlay pos pos (current-buffer)))) + (let ((fringe (make-overlay pos pos))) (overlay-put fringe 'edebug t) (overlay-put fringe 'before-string (propertize |