aboutsummaryrefslogtreecommitdiffstats
path: root/src/print.c
diff options
context:
space:
mode:
authorRichard M. Stallman1991-08-04 21:39:58 +0000
committerRichard M. Stallman1991-08-04 21:39:58 +0000
commit200f684ed77de1b1b366daaf73d4bc95161765dc (patch)
treeaad3be16c649640ef8c2ef746a5ade6c1257b469 /src/print.c
parentbfb612994fe2d6dfb42919842c5f40059cd08135 (diff)
downloademacs-200f684ed77de1b1b366daaf73d4bc95161765dc.tar.gz
emacs-200f684ed77de1b1b366daaf73d4bc95161765dc.zip
*** empty log message ***
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/print.c b/src/print.c
index 9eff5250e63..3ef76747a91 100644
--- a/src/print.c
+++ b/src/print.c
@@ -805,7 +805,7 @@ print (obj, printcharfun, escapeflag)
805 break; 805 break;
806 806
807 case Lisp_Compiled: 807 case Lisp_Compiled:
808 strout ("#<byte-code ", -1, printcharfun); 808 strout ("#", -1, printcharfun);
809 case Lisp_Vector: 809 case Lisp_Vector:
810 PRINTCHAR ('['); 810 PRINTCHAR ('[');
811 { 811 {
@@ -819,8 +819,6 @@ print (obj, printcharfun, escapeflag)
819 } 819 }
820 } 820 }
821 PRINTCHAR (']'); 821 PRINTCHAR (']');
822 if (XTYPE (obj) == Lisp_Compiled)
823 PRINTCHAR ('>');
824 break; 822 break;
825 823
826#ifndef standalone 824#ifndef standalone