Mercurial > emacs
diff src/print.c @ 90970:3371fc48749b
Replace uses of GC_* macros with the non-GC_ versions.
| author | Stefan Monnier <monnier@iro.umontreal.ca> |
|---|---|
| date | Fri, 29 Jun 2007 03:37:33 +0000 |
| parents | 4ef881a120fe |
| children | a66921565bcb |
line wrap: on
line diff
--- a/src/print.c Tue Jun 26 12:02:59 2007 +0000 +++ b/src/print.c Fri Jun 29 03:37:33 2007 +0000 @@ -1425,7 +1425,7 @@ print_number_index++; } - switch (XGCTYPE (obj)) + switch (XTYPE (obj)) { case Lisp_String: /* A string may have text properties, which can be circular. */ @@ -1626,7 +1626,7 @@ } #endif /* MAX_PRINT_CHARS */ - switch (XGCTYPE (obj)) + switch (XTYPE (obj)) { case Lisp_Int: if (sizeof (int) == sizeof (EMACS_INT))
