]> git.eshelyaron.com Git - emacs.git/commitdiff
* erc-button.el (erc-button-next-function): Scoping fix (Bug#9487).
authorAntoine Levitt <antoine.levitt@gmail.com>
Fri, 23 Sep 2011 21:22:31 +0000 (17:22 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Fri, 23 Sep 2011 21:22:31 +0000 (17:22 -0400)
lisp/erc/ChangeLog
lisp/erc/erc-button.el

index 1560f2a904949c5c7790b1ec1e1495c86586d104..7c7f10de2c8b17091d755376d6166552f1e7df82 100644 (file)
@@ -1,3 +1,8 @@
+2011-09-23  Antoine Levitt  <antoine.levitt@gmail.com>
+
+       * erc-button.el (erc-button-next-function): Scoping fix
+       (Bug#9487).
+
 2011-07-04  Vivek Dasmohapatra  <vivek@etla.org>
 
        * erc.el (erc-generate-new-buffer-name): Reuse old buffer names
index 3a897347dea3ab64e56a71b133e9fe5085312e67..7fbbbc317d0b92085823b6bbf95a657d9139cfe7 100644 (file)
@@ -430,19 +430,19 @@ call it with the value of the `erc-data' text property."
 (defun erc-button-next-function ()
   "Pseudo completion function that actually jumps to the next button.
 For use on `completion-at-point-functions'."
-  (let ((here (point)))
-    (when (< here (erc-beg-of-input-line))
-      (lambda ()
-        (while (and (get-text-property here 'erc-callback)
-                    (not (= here (point-max))))
-          (setq here (1+ here)))
-        (while (and (not (get-text-property here 'erc-callback))
-                    (not (= here (point-max))))
-          (setq here (1+ here)))
-        (if (< here (point-max))
-            (goto-char here)
-          (error "No next button"))
-        t))))
+    (when (< (point) (erc-beg-of-input-line))
+      `(lambda ()
+         (let ((here ,(point)))
+           (while (and (get-text-property here 'erc-callback)
+                       (not (= here (point-max))))
+             (setq here (1+ here)))
+           (while (and (not (get-text-property here 'erc-callback))
+                       (not (= here (point-max))))
+             (setq here (1+ here)))
+           (if (< here (point-max))
+               (goto-char here)
+             (error "No next button"))
+           t))))
 
 (defun erc-button-next ()
   "Go to the next button in this buffer."