From b3f070938b0a6d2797eac1772e27de16d2fa8b26 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 21 Jan 2000 03:40:33 +0000 Subject: [PATCH] (with-syntax-table): Use make-symbol, not gensym. --- lisp/subr.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.5