diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2017-09-23 17:06:23 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2017-09-23 17:06:23 -0400 |
commit | 535db535a9168ae73740f50b57210eb127c37119 (patch) | |
tree | b43f221a5092dbb63baa34dff0e7c2e8058e5112 /lisp/newcomment.el | |
parent | c0af83b6ccf2dab9a515dd7f52eb9d4500275ae3 (diff) | |
download | emacs-535db535a9168ae73740f50b57210eb127c37119.tar.gz emacs-535db535a9168ae73740f50b57210eb127c37119.tar.bz2 emacs-535db535a9168ae73740f50b57210eb127c37119.zip |
* lisp/newcomment.el (comment-search-backward): Obey the docstring (bug#28428)
Diffstat (limited to 'lisp/newcomment.el')
-rw-r--r-- | lisp/newcomment.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/newcomment.el b/lisp/newcomment.el index 2a0f8a8ae50..2e644c3a99c 100644 --- a/lisp/newcomment.el +++ b/lisp/newcomment.el @@ -524,7 +524,7 @@ Ensure that `comment-normalize-vars' has been called before you use this." ;; comment-search-backward is only used to find the comment-column (in ;; comment-set-column) and to find the comment-start string (via ;; comment-beginning) in indent-new-comment-line, it should be harmless. - (if (not (re-search-backward comment-start-skip limit t)) + (if (not (re-search-backward comment-start-skip limit 'move)) (unless noerror (error "No comment")) (beginning-of-line) (let* ((end (match-end 0)) |