diff options
author | Richard M. Stallman <rms@gnu.org> | 1999-09-11 04:44:23 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1999-09-11 04:44:23 +0000 |
commit | 42e0601d4a9654d8cd873859244755454870cb25 (patch) | |
tree | 86bd191e4db15bf3853f380d41e42be21a2e2ec0 /lisp/emacs-lisp/bytecomp.el | |
parent | 7d15d35df85b18950ab0d094f7f52746c5982719 (diff) | |
download | emacs-42e0601d4a9654d8cd873859244755454870cb25.tar.gz emacs-42e0601d4a9654d8cd873859244755454870cb25.tar.bz2 emacs-42e0601d4a9654d8cd873859244755454870cb25.zip |
(byte-compile-output-docform): Bind print-continuous-numbering and
print-number-table.
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index d97f9bd365f..63f9d395e63 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -9,7 +9,7 @@ ;;; This version incorporates changes up to version 2.10 of the ;;; Zawinski-Furuseth compiler. -(defconst byte-compile-version "$Revision: 2.55 $") +(defconst byte-compile-version "$Revision: 2.56 $") ;; This file is part of GNU Emacs. @@ -1643,11 +1643,9 @@ list that represents a doc string reference. (insert (car info)) (let ((print-escape-newlines t) (print-quoted 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 + (print-gensym t) + (print-continuous-numbering t) + print-number-table (index 0)) (prin1 (car form) outbuffer) (while (setq form (cdr form)) |