]> git.eshelyaron.com Git - emacs.git/commitdiff
(with-syntax-table): Use make-symbol, not gensym.
authorRichard M. Stallman <rms@gnu.org>
Fri, 21 Jan 2000 03:40:33 +0000 (03:40 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 21 Jan 2000 03:40:33 +0000 (03:40 +0000)
lisp/subr.el

index 489c4b1c7fa194f1d013631a91c9fb20c9d74c23..f4976eeb083f195d6530858660420430cda528af 100644 (file)
@@ -1095,8 +1095,8 @@ in BODY."
 The syntax table of the current buffer is saved, BODY is evaluated, and the
 saved table is restored, even in case of an abnormal exit.
 Value is what BODY returns."
-  (let ((old-table (gensym))
-       (old-buffer (gensym)))
+  (let ((old-table (make-symbol "table"))
+       (old-buffer (make-symbol "buffer")))
     `(let ((,old-table (syntax-table))
           (,old-buffer (current-buffer)))
        (unwind-protect