emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/el-search 02168e0 068/332: Tweak docstring of el-search


From: Stefan Monnier
Subject: [elpa] externals/el-search 02168e0 068/332: Tweak docstring of el-search--ensure-sexp-start
Date: Tue, 1 Dec 2020 15:48:13 -0500 (EST)

branch: externals/el-search
commit 02168e0cb02487375eaea0e633901226abba877f
Author: Michael Heerdegen <michael_heerdegen@web.de>
Commit: Michael Heerdegen <michael_heerdegen@web.de>

    Tweak docstring of el-search--ensure-sexp-start
---
 el-search.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/el-search.el b/el-search.el
index fc9f2bf..dea74b2 100644
--- a/el-search.el
+++ b/el-search.el
@@ -327,9 +327,10 @@ If nil, the value of `case-fold-search' is decisive."
   (or (scan-sexps (point) 1) (point-max)))
 
 (defun el-search--ensure-sexp-start ()
-  "Move point to the beginning of the next sexp if necessary.
-Don't move if already at beginning of a sexp.
-Point must not be inside a string or comment."
+  "Move point to the next sexp beginning position.
+Don't move if already at beginning of a sexp.  Point must not be
+inside a string or comment.  `read' the expression at that point
+and return it."
   (let ((not-done t) res)
     (while not-done
       (let ((stop-here nil)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]