aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2004-12-07 16:52:54 +0000
committerStefan Monnier2004-12-07 16:52:54 +0000
commit19b1f29a2df4bcc0a3f738f9e04e949a4d88f534 (patch)
treef7b5f822ac9714fdb149e27f2fc37d69a73dbad0 /src
parenta4547405f5d246a1fe97dd3ab52368dbf3e9729f (diff)
downloademacs-19b1f29a2df4bcc0a3f738f9e04e949a4d88f534.tar.gz
emacs-19b1f29a2df4bcc0a3f738f9e04e949a4d88f534.zip
Regenerate.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog15
-rw-r--r--src/config.in19
2 files changed, 22 insertions, 12 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 3064999717f..999dbf373d5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12004-12-07 Stefan <monnier@iro.umontreal.ca>
2
3 * eval.c (init_eval_once): Increase max_specpdl_size to 1000.
4
5 * config.in: Regenerate.
6
12004-12-07 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> 72004-12-07 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
2 8
3 * xmenu.c (Fx_popup_menu): Correct documentation about position. 9 * xmenu.c (Fx_popup_menu): Correct documentation about position.
@@ -100,13 +106,10 @@
100 106
1012004-11-30 Kenichi Handa <handa@m17n.org> 1072004-11-30 Kenichi Handa <handa@m17n.org>
102 108
103 * term.c (encode_terminal_buf, encode_terminal_bufsize): New 109 * term.c (encode_terminal_buf, encode_terminal_bufsize): New variables.
104 variables.
105 (encode_terminal_code): Argument changed. Encode all 110 (encode_terminal_code): Argument changed. Encode all
106 characters at once, and return a pointer to the result of 111 characters at once, and return a pointer to the result of encoding.
107 encoding. 112 (write_glyphs): Decide coding here. Adjusted for the above change.
108 (write_glyphs): Decide coding here. Adjusted for the above
109 change.
110 (insert_glyphs): Likewise. 113 (insert_glyphs): Likewise.
111 (term_init): Initialize encode_terminal_bufsize to 0. 114 (term_init): Initialize encode_terminal_bufsize to 0.
112 115
diff --git a/src/config.in b/src/config.in
index 0add6c42f6e..87e37e65ef2 100644
--- a/src/config.in
+++ b/src/config.in
@@ -1,7 +1,8 @@
1/* src/config.in. Generated from configure.in by autoheader. */ 1/* src/config.in. Generated from configure.in by autoheader. */
2 2
3/* GNU Emacs site configuration template file. 3/* GNU Emacs site configuration template file.
4 Copyright (C) 1988, 93, 94, 99, 2000, 2002 Free Software Foundation, Inc. 4 Copyright (C) 1988, 1993, 1994, 1999, 2000, 2002, 2004
5 Free Software Foundation, Inc.
5 6
6This file is part of GNU Emacs. 7This file is part of GNU Emacs.
7 8
@@ -775,9 +776,9 @@ Boston, MA 02111-1307, USA. */
775/* If using the C implementation of alloca, define if you know the 776/* If using the C implementation of alloca, define if you know the
776 direction of stack growth for your system; otherwise it will be 777 direction of stack growth for your system; otherwise it will be
777 automatically deduced at run-time. 778 automatically deduced at run-time.
778 STACK_DIRECTION > 0 => grows toward higher addresses 779 STACK_DIRECTION > 0 => grows toward higher addresses
779 STACK_DIRECTION < 0 => grows toward lower addresses 780 STACK_DIRECTION < 0 => grows toward lower addresses
780 STACK_DIRECTION = 0 => direction of growth unknown */ 781 STACK_DIRECTION = 0 => direction of growth unknown */
781#undef STACK_DIRECTION 782#undef STACK_DIRECTION
782 783
783/* Define to 1 if you have the ANSI C header files. */ 784/* Define to 1 if you have the ANSI C header files. */
@@ -926,7 +927,7 @@ Boston, MA 02111-1307, USA. */
926/* Don't try to switch on inline handling as detected by AC_C_INLINE 927/* Don't try to switch on inline handling as detected by AC_C_INLINE
927 generally, because even if non-gcc compilers accept `inline', they 928 generally, because even if non-gcc compilers accept `inline', they
928 may reject `extern inline'. */ 929 may reject `extern inline'. */
929#ifdef __GNUC__ 930#if defined (__GNUC__) && defined (OPTIMIZE)
930#define INLINE __inline__ 931#define INLINE __inline__
931#else 932#else
932#define INLINE 933#define INLINE
@@ -974,7 +975,13 @@ Boston, MA 02111-1307, USA. */
974/* Tell regex.c to use a type compatible with Emacs. */ 975/* Tell regex.c to use a type compatible with Emacs. */
975#define RE_TRANSLATE_TYPE Lisp_Object 976#define RE_TRANSLATE_TYPE Lisp_Object
976#define RE_TRANSLATE(TBL, C) CHAR_TABLE_TRANSLATE (TBL, C) 977#define RE_TRANSLATE(TBL, C) CHAR_TABLE_TRANSLATE (TBL, C)
977#define RE_TRANSLATE_P(TBL) (XFASTINT (TBL) != 0) 978#ifdef make_number
979/* If make_number is a macro, use it. */
980#define RE_TRANSLATE_P(TBL) (!EQ (TBL, make_number (0)))
981#else
982/* If make_number is a function, avoid it. */
983#define RE_TRANSLATE_P(TBL) (!(INTEGERP (TBL) && XINT (TBL) == 0))
984#endif
978#endif 985#endif
979 986
980/* Avoid link-time collision with system mktime if we will use our own. */ 987/* Avoid link-time collision with system mktime if we will use our own. */