annotate src/s/aix3-2-5.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 |
3ecd8885ac67 |
children |
|
rev |
line source |
428
|
1 /* s- file for building Emacs on AIX 3.2.5. */
|
|
2
|
|
3 /* Synched up with: FSF 19.31. */
|
|
4
|
|
5 #include "aix3-2.h"
|
|
6
|
|
7 /* For AIX, it turns out compiling emacs under AIX 3.2.4 REQUIRES "cc -g"
|
|
8 because "cc -O" crashes. Under AIX 3.2.5, "cc -O" is required because
|
|
9 "cc -g" crashes. Go figure. --floppy@merlin.mit.edu */
|
|
10 #ifndef __GNUC__
|
|
11 #undef C_DEBUG_SWITCH
|
|
12 #undef C_OPTIMIZE_SWITCH
|
|
13 #define C_DEBUG_SWITCH
|
|
14 #define C_OPTIMIZE_SWITCH "-O"
|
|
15 #endif
|
|
16
|
|
17 #define MAIL_USE_LOCKF
|
|
18
|
|
19 /* XEmacs: from dkeller@VNET.IBM.COM */
|
|
20 #define BROKEN_SIGIO
|