branch: master commit ef3e3a008d6e6948955a0b0e55e71d3eef22e85c Author: Michael Heerdegen <michael_heerde...@web.de> Commit: Michael Heerdegen <michael_heerde...@web.de>
rename a local variable --- packages/el-search/el-search.el | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/el-search/el-search.el b/packages/el-search/el-search.el index 1107a10..3ee4536 100644 --- a/packages/el-search/el-search.el +++ b/packages/el-search/el-search.el @@ -357,9 +357,9 @@ return nil (no error)." (condition-case nil (while (< (point) (or bound (point-max))) (let* ((this-sexp-end (save-excursion (thing-at-point--end-of-sexp) (point))) - (this-sexp-bounds (buffer-substring-no-properties (point) this-sexp-end))) - (funcall do-fun this-sexp-bounds this-sexp-end) - (el-search--skip-expression (read this-sexp-bounds)) + (this-sexp-string (buffer-substring-no-properties (point) this-sexp-end))) + (funcall do-fun this-sexp-string this-sexp-end) + (el-search--skip-expression (read this-sexp-string)) (el-search--ensure-sexp-start))) (end-of-buffer)) (when ret-fun (funcall ret-fun))))