summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2007-03-26 03:30:53 +0000
committerRichard M. Stallman <rms@gnu.org>2007-03-26 03:30:53 +0000
commit8bd91fd08df0a55b5142d8485a554fcd95a36077 (patch)
treeafcea8349b51be8eb260659d5f5268ad17e4216c /lisp/emacs-lisp
parenta2ebb43f91f82bc25cbcd0a8b7136c9227ca159b (diff)
downloademacs-8bd91fd08df0a55b5142d8485a554fcd95a36077.tar.gz
emacs-8bd91fd08df0a55b5142d8485a554fcd95a36077.tar.bz2
emacs-8bd91fd08df0a55b5142d8485a554fcd95a36077.zip
(byte-compile-file-form-defmumble): Use prin1 instead of princ.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/bytecomp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index f74e48c4635..31d21fd8720 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -2341,7 +2341,7 @@ list that represents a doc string reference.
(eq (car (car (cdr tail))) 'declare))
(let ((declaration (car (cdr tail))))
(setcdr tail (cdr (cdr tail)))
- (princ `(if macro-declaration-function
+ (prin1 `(if macro-declaration-function
(funcall macro-declaration-function
',name ',declaration))
outbuffer)))))