comparison src/print.c @ 16051:ccf489f8596e

Removed support for !MULTI_FRAME.
author Karl Heuer <kwzh@gnu.org>
date Sun, 01 Sep 1996 21:04:32 +0000
parents 855c8d8ba0f0
children e7de214aac01
comparison
equal deleted inserted replaced
16050:c2805a244171 16051:ccf489f8596e
1148 } 1148 }
1149 else if (WINDOW_CONFIGURATIONP (obj)) 1149 else if (WINDOW_CONFIGURATIONP (obj))
1150 { 1150 {
1151 strout ("#<window-configuration>", -1, printcharfun); 1151 strout ("#<window-configuration>", -1, printcharfun);
1152 } 1152 }
1153 #ifdef MULTI_FRAME
1154 else if (FRAMEP (obj)) 1153 else if (FRAMEP (obj))
1155 { 1154 {
1156 strout ((FRAME_LIVE_P (XFRAME (obj)) 1155 strout ((FRAME_LIVE_P (XFRAME (obj))
1157 ? "#<frame " : "#<dead frame "), 1156 ? "#<frame " : "#<dead frame "),
1158 -1, printcharfun); 1157 -1, printcharfun);
1159 print_string (XFRAME (obj)->name, printcharfun); 1158 print_string (XFRAME (obj)->name, printcharfun);
1160 sprintf (buf, " 0x%lx", (unsigned long) (XFRAME (obj))); 1159 sprintf (buf, " 0x%lx", (unsigned long) (XFRAME (obj)));
1161 strout (buf, -1, printcharfun); 1160 strout (buf, -1, printcharfun);
1162 PRINTCHAR ('>'); 1161 PRINTCHAR ('>');
1163 } 1162 }
1164 #endif
1165 #endif /* not standalone */ 1163 #endif /* not standalone */
1166 else 1164 else
1167 { 1165 {
1168 int size = XVECTOR (obj)->size; 1166 int size = XVECTOR (obj)->size;
1169 if (COMPILEDP (obj)) 1167 if (COMPILEDP (obj))