]> git.eshelyaron.com Git - emacs.git/commitdiff
(ebrowse-output): Don't use gensym.
authorDave Love <fx@gnu.org>
Mon, 17 Feb 2003 23:16:52 +0000 (23:16 +0000)
committerDave Love <fx@gnu.org>
Mon, 17 Feb 2003 23:16:52 +0000 (23:16 +0000)
lisp/ChangeLog
lisp/progmodes/ebrowse.el

index 4c223d6dbbcbcbcf1d45514f668c4f237e79f511..ce3242d9a03b335bb9e47c82f120fb8867e05d35 100644 (file)
@@ -1,3 +1,7 @@
+2003-02-17  Dave Love  <fx@gnu.org>
+
+       * progmodes/ebrowse.el (ebrowse-output): Don't use gensym.
+
 2003-02-17  Markus Rost  <rost@math.ohio-state.edu>
 
        * calendar/calendar.el (diary-file-name-prefix-function): Fix
index c05f2d604228f48d7cc0aea0865d3c48b2de2378..44f5a8f0126ea568714c021ed4267583862a7987 100644 (file)
@@ -258,7 +258,7 @@ This is a destructive operation."
 (defmacro ebrowse-output (&rest body)
   "Eval BODY with a writable current buffer.
 Preserve buffer's modified state."
-  (let ((modified (gensym "--ebrowse-output--")))
+  (let ((modified (make-symbol "--ebrowse-output--")))
     `(let (buffer-read-only (,modified (buffer-modified-p)))
        (unwind-protect
           (progn ,@body)