From dd7426eaf3aef63ac4671da9209187559cecc8ac Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 18 Jun 2013 13:57:56 -0400 Subject: [PATCH] * newcomment.el (comment-search-forward, comment-search-backward): Doc fix. --- lisp/ChangeLog | 5 +++++ lisp/newcomment.el | 8 ++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 30a59aa8912..023e11a9415 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2013-06-18 Glenn Morris + + * newcomment.el (comment-search-forward, comment-search-backward): + Doc fix. (Bug#14376) + 2013-06-18 Juanma Barranquero * face-remap.el (buffer-face-toggle): Fix typo in docstring. diff --git a/lisp/newcomment.el b/lisp/newcomment.el index bcb5f721ae8..19a06bfe8e5 100644 --- a/lisp/newcomment.el +++ b/lisp/newcomment.el @@ -446,7 +446,9 @@ in strings will not confuse Emacs.") "Find a comment start between point and LIMIT. Moves point to inside the comment and returns the position of the comment-starter. If no comment is found, moves point to LIMIT -and raises an error or returns nil if NOERROR is non-nil." +and raises an error or returns nil if NOERROR is non-nil. + +Ensure that `comment-normalize-vars' has been called before you use this." (if (not comment-use-syntax) (if (re-search-forward comment-start-skip limit noerror) (or (match-end 1) (match-beginning 0)) @@ -484,7 +486,9 @@ and raises an error or returns nil if NOERROR is non-nil." "Find a comment start between LIMIT and point. Moves point to inside the comment and returns the position of the comment-starter. If no comment is found, moves point to LIMIT -and raises an error or returns nil if NOERROR is non-nil." +and raises an error or returns nil if NOERROR is non-nil. + +Ensure that `comment-normalize-vars' has been called before you use this." ;; FIXME: If a comment-start appears inside a comment, we may erroneously ;; stop there. This can be rather bad in general, but since ;; comment-search-backward is only used to find the comment-column (in -- 2.11.4.GIT