]> code.delx.au - gnu-emacs-elpa/commitdiff
rename a local variable
authorMichael Heerdegen <michael_heerdegen@web.de>
Tue, 20 Oct 2015 14:23:16 +0000 (16:23 +0200)
committerMichael Heerdegen <michael_heerdegen@web.de>
Sat, 31 Oct 2015 18:16:58 +0000 (19:16 +0100)
packages/el-search/el-search.el

index 1107a10d908550afb1f1a13904836a212bedd5dd..3ee453656a0c96f238842c7e934cc2bb94bc6200 100644 (file)
@@ -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))))