comparison src/print.c @ 83566:ddc474387d53

Import arch branch emacs@sv.gnu.org/emacs--multi-tty--0
author Miles Bader <miles@gnu.org>
date Sun, 13 May 2007 13:26:57 +0000
parents dc002877ce12
children 0ece58f6e0aa
comparison
equal deleted inserted replaced
80895:776cb0a1bb24 83566:ddc474387d53
1386 if (! NILP (Vprint_circle) || SYMBOLP (obj)) 1386 if (! NILP (Vprint_circle) || SYMBOLP (obj))
1387 { 1387 {
1388 for (i = 0; i < print_number_index; i++) 1388 for (i = 0; i < print_number_index; i++)
1389 if (EQ (PRINT_NUMBER_OBJECT (Vprint_number_table, i), obj)) 1389 if (EQ (PRINT_NUMBER_OBJECT (Vprint_number_table, i), obj))
1390 { 1390 {
1391 /* OBJ appears more than once. Let's remember that. */ 1391 /* OBJ appears more than once. Let's remember that. */
1392 PRINT_NUMBER_STATUS (Vprint_number_table, i) = Qt; 1392 PRINT_NUMBER_STATUS (Vprint_number_table, i) = Qt;
1393 print_depth--; 1393 print_depth--;
1394 return; 1394 return;
1395 } 1395 }
1396 1396
1397 /* OBJ is not yet recorded. Let's add to the table. */ 1397 /* OBJ is not yet recorded. Let's add to the table. */
1398 if (print_number_index == 0) 1398 if (print_number_index == 0)
1399 { 1399 {