]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix last change.
authorDave Love <fx@gnu.org>
Mon, 22 May 2000 18:19:55 +0000 (18:19 +0000)
committerDave Love <fx@gnu.org>
Mon, 22 May 2000 18:19:55 +0000 (18:19 +0000)
lisp/progmodes/etags.el

index 7469308a781bb4bc3b63fc00388f395152637672..154217b6e8e1c54ce8fdc0cc70bda418dc19fa70 100644 (file)
@@ -1295,10 +1295,9 @@ where they were found."
 (defmacro tags-with-face (face &rest body)
   "Execute BODY, give output to `standard-output' face FACE."
   (let ((pp (gensym "twf-")))
-    `(let ((,old-point (with-current-buffer standard-output (point))))
+    `(let ((,pp (with-current-buffer standard-output (point))))
        ,@body
-       (put-text-property ,old-point (with-current-buffer standard-output
-                                      (point))
+       (put-text-property ,pp (with-current-buffer standard-output (point))
                          'face ,face standard-output))))
 
 (defun etags-tags-apropos-additional (regexp)