]> git.eshelyaron.com Git - emacs.git/commitdiff
(byte-compile-output-docform):
authorRichard M. Stallman <rms@gnu.org>
Fri, 25 Jul 1997 03:01:28 +0000 (03:01 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 25 Jul 1997 03:01:28 +0000 (03:01 +0000)
Bind print-gensym-alist; bind print-gensym to a cons cell.

lisp/emacs-lisp/bytecomp.el

index f3d2d22f5ac82d5e1402aaa8bfb437a1495f1389..351baaef472c35ea72b8a4501add9b5bc14beb9a 100644 (file)
@@ -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 @@ list that represents a doc string reference.
         (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))