/[emacs]/emacs/src/print.c
ViewVC logotype

Diff of /emacs/src/print.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.172.2.1 by handa, Fri Mar 1 01:45:03 2002 UTC revision 1.172.2.2 by fx, Fri May 17 16:37:56 2002 UTC
# Line 1683  print_object (obj, printcharfun, escapef Line 1683  print_object (obj, printcharfun, escapef
1683    
1684            PRINTCHAR ('#');            PRINTCHAR ('#');
1685            PRINTCHAR ('&');            PRINTCHAR ('&');
1686            sprintf (buf, "%d", XBOOL_VECTOR (obj)->size);            if (sizeof (int) == sizeof (EMACS_INT))
1687                sprintf (buf, "%d", XBOOL_VECTOR (obj)->size);
1688              else if (sizeof (long) == sizeof (EMACS_INT))
1689                sprintf (buf, "%ld", XBOOL_VECTOR (obj)->size);
1690              else
1691                abort ();
1692            strout (buf, -1, -1, printcharfun, 0);            strout (buf, -1, -1, printcharfun, 0);
1693            PRINTCHAR ('\"');            PRINTCHAR ('\"');
1694    

Legend:
Removed from v.1.172.2.1  
changed lines
  Added in v.1.172.2.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26