# HG changeset patch # User Richard M. Stallman # Date 869799688 0 # Node ID 12a8bc6cb2257f2e65fecdedc08dafe977108e58 # Parent f6f245a3714bdc6df9e002d606e0247d3202c855 (byte-compile-output-docform): Bind print-gensym-alist; bind print-gensym to a cons cell. diff -r f6f245a3714b -r 12a8bc6cb225 lisp/emacs-lisp/bytecomp.el --- a/lisp/emacs-lisp/bytecomp.el Fri Jul 25 03:00:41 1997 +0000 +++ b/lisp/emacs-lisp/bytecomp.el Fri Jul 25 03:01:28 1997 +0000 @@ -10,7 +10,7 @@ ;;; This version incorporates changes up to version 2.10 of the ;;; Zawinski-Furuseth compiler. -(defconst byte-compile-version "$Revision: 2.31 $") +(defconst byte-compile-version "$Revision: 2.32 $") ;; This file is part of GNU Emacs. @@ -1522,7 +1522,11 @@ (insert (car info)) (let ((print-escape-newlines t) (print-quoted t) - (print-gensym t) + ;; Use a cons cell to say that we want + ;; print-gensym-alist not to be cleared + ;; between calls to print functions. + (print-gensym '(t)) + print-gensym-alist (index 0)) (prin1 (car form) outbuffer) (while (setq form (cdr form))