aboutsummaryrefslogtreecommitdiffstats
path: root/src/print.c
diff options
context:
space:
mode:
authorStefan Monnier2007-06-29 03:37:33 +0000
committerStefan Monnier2007-06-29 03:37:33 +0000
commit8e50cc2df8df6f773422ab11805704eaa4bba016 (patch)
tree5041fa64f3f1bc6d4ffd1465a88a40055b7b39ab /src/print.c
parentdf2d551eba1af9966308bb70da6dd5f4e03b650e (diff)
downloademacs-8e50cc2df8df6f773422ab11805704eaa4bba016.tar.gz
emacs-8e50cc2df8df6f773422ab11805704eaa4bba016.zip
Replace uses of GC_* macros with the non-GC_ versions.
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/print.c b/src/print.c
index 855bcce6ef6..524207ce298 100644
--- a/src/print.c
+++ b/src/print.c
@@ -1425,7 +1425,7 @@ print_preprocess (obj)
1425 print_number_index++; 1425 print_number_index++;
1426 } 1426 }
1427 1427
1428 switch (XGCTYPE (obj)) 1428 switch (XTYPE (obj))
1429 { 1429 {
1430 case Lisp_String: 1430 case Lisp_String:
1431 /* A string may have text properties, which can be circular. */ 1431 /* A string may have text properties, which can be circular. */
@@ -1626,7 +1626,7 @@ print_object (obj, printcharfun, escapeflag)
1626 } 1626 }
1627#endif /* MAX_PRINT_CHARS */ 1627#endif /* MAX_PRINT_CHARS */
1628 1628
1629 switch (XGCTYPE (obj)) 1629 switch (XTYPE (obj))
1630 { 1630 {
1631 case Lisp_Int: 1631 case Lisp_Int:
1632 if (sizeof (int) == sizeof (EMACS_INT)) 1632 if (sizeof (int) == sizeof (EMACS_INT))