From: Richard M. Stallman Date: Fri, 21 Jan 2000 03:40:33 +0000 (+0000) Subject: (with-syntax-table): Use make-symbol, not gensym. X-Git-Tag: emacs-pretest-21.0.90~5298 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b3f070938b0a6d2797eac1772e27de16d2fa8b26;p=emacs.git (with-syntax-table): Use make-symbol, not gensym. --- diff --git a/lisp/subr.el b/lisp/subr.el index 489c4b1c7fa..f4976eeb083 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -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