annotate src/s/bsdos4.h @ 4394:cacc942c0d0f

Avoid clearing print-gensym-alist inappropriately when printing hash tables. 2008-01-15 Aidan Kehoe <kehoea@parhasard.net> * automated/lisp-tests.el (thing): Check that printing a hash table literal doesn't clear print-gensym-alist. 2008-01-15 Aidan Kehoe <kehoea@parhasard.net> * print.c (prin1_to_string): New. The guts of Fprin1_to_string, without resetting Vprint_gensym_alist. (Fprin1_to_string): Call prin1_to_string, wrapped with RESET_PRINT_GENSYM calls. * doprnt.c (emacs_doprnt_1): Call prin1_to_string, not Fprin1_to_string (dos veces). Avoids an inappropriate reset of print-gensym-alist.
author Aidan Kehoe <kehoea@parhasard.net>
date Tue, 15 Jan 2008 21:35:01 +0100
parents 00e9371a84f3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
333
4f79e16b1112 Import from CVS: tag r21-0-64
cvs
parents:
diff changeset
1 #include "bsdos3.h"
4f79e16b1112 Import from CVS: tag r21-0-64
cvs
parents:
diff changeset
2
4f79e16b1112 Import from CVS: tag r21-0-64
cvs
parents:
diff changeset
3 /* BSD/OS seems to have switched to ELF format for executables. */
4f79e16b1112 Import from CVS: tag r21-0-64
cvs
parents:
diff changeset
4 #ifdef __ELF__
4f79e16b1112 Import from CVS: tag r21-0-64
cvs
parents:
diff changeset
5
4f79e16b1112 Import from CVS: tag r21-0-64
cvs
parents:
diff changeset
6 #undef ORDINARY_LINK
4f79e16b1112 Import from CVS: tag r21-0-64
cvs
parents:
diff changeset
7 #define ORDINARY_LINK 1
4f79e16b1112 Import from CVS: tag r21-0-64
cvs
parents:
diff changeset
8 #define UNEXEC unexelf.o
4f79e16b1112 Import from CVS: tag r21-0-64
cvs
parents:
diff changeset
9
4f79e16b1112 Import from CVS: tag r21-0-64
cvs
parents:
diff changeset
10 #endif /* ELF */
508
0be8704d6062 [xemacs-hg @ 2001-05-05 10:21:20 by martinb]
martinb
parents: 333
diff changeset
11
0be8704d6062 [xemacs-hg @ 2001-05-05 10:21:20 by martinb]
martinb
parents: 333
diff changeset
12 /* The declaration for openpty is missing. Where is libutil.h? */
517
00e9371a84f3 [xemacs-hg @ 2001-05-08 05:16:01 by martinb]
martinb
parents: 508
diff changeset
13 #ifndef NOT_C_CODE
508
0be8704d6062 [xemacs-hg @ 2001-05-05 10:21:20 by martinb]
martinb
parents: 333
diff changeset
14 struct termios;
0be8704d6062 [xemacs-hg @ 2001-05-05 10:21:20 by martinb]
martinb
parents: 333
diff changeset
15 struct winsize;
0be8704d6062 [xemacs-hg @ 2001-05-05 10:21:20 by martinb]
martinb
parents: 333
diff changeset
16 int openpty (int *, int *, char *, struct termios *, struct winsize *);
517
00e9371a84f3 [xemacs-hg @ 2001-05-08 05:16:01 by martinb]
martinb
parents: 508
diff changeset
17 #endif