aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2004-12-07 16:52:54 +0000
committerStefan Monnier <[email protected]>2004-12-07 16:52:54 +0000
commit19b1f29a2df4bcc0a3f738f9e04e949a4d88f534 (patch)
treef7b5f822ac9714fdb149e27f2fc37d69a73dbad0
parenta4547405f5d246a1fe97dd3ab52368dbf3e9729f (diff)
Regenerate.
-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 3064999717..999dbf373d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
+2004-12-07 Stefan <[email protected]>
+
+ * eval.c (init_eval_once): Increase max_specpdl_size to 1000.
+
+ * config.in: Regenerate.
+
2004-12-07 Jan Dj,Ad(Brv <[email protected]>
* xmenu.c (Fx_popup_menu): Correct documentation about position.
@@ -100,13 +106,10 @@
2004-11-30 Kenichi Handa <[email protected]>
- * term.c (encode_terminal_buf, encode_terminal_bufsize): New
- variables.
+ * term.c (encode_terminal_buf, encode_terminal_bufsize): New variables.
(encode_terminal_code): Argument changed. Encode all
- characters at once, and return a pointer to the result of
- encoding.
- (write_glyphs): Decide coding here. Adjusted for the above
- change.
+ characters at once, and return a pointer to the result of encoding.
+ (write_glyphs): Decide coding here. Adjusted for the above change.
(insert_glyphs): Likewise.
(term_init): Initialize encode_terminal_bufsize to 0.
diff --git a/src/config.in b/src/config.in
index 0add6c42f6..87e37e65ef 100644
--- a/src/config.in
+++ b/src/config.in
@@ -1,7 +1,8 @@
/* src/config.in. Generated from configure.in by autoheader. */
/* GNU Emacs site configuration template file.
- Copyright (C) 1988, 93, 94, 99, 2000, 2002 Free Software Foundation, Inc.
+ Copyright (C) 1988, 1993, 1994, 1999, 2000, 2002, 2004
+ Free Software Foundation, Inc.
This file is part of GNU Emacs.
@@ -775,9 +776,9 @@ Boston, MA 02111-1307, USA. */
/* If using the C implementation of alloca, define if you know the
direction of stack growth for your system; otherwise it will be
automatically deduced at run-time.
- STACK_DIRECTION > 0 => grows toward higher addresses
- STACK_DIRECTION < 0 => grows toward lower addresses
- STACK_DIRECTION = 0 => direction of growth unknown */
+ STACK_DIRECTION > 0 => grows toward higher addresses
+ STACK_DIRECTION < 0 => grows toward lower addresses
+ STACK_DIRECTION = 0 => direction of growth unknown */
#undef STACK_DIRECTION
/* Define to 1 if you have the ANSI C header files. */
@@ -926,7 +927,7 @@ Boston, MA 02111-1307, USA. */
/* Don't try to switch on inline handling as detected by AC_C_INLINE
generally, because even if non-gcc compilers accept `inline', they
may reject `extern inline'. */
-#ifdef __GNUC__
+#if defined (__GNUC__) && defined (OPTIMIZE)
#define INLINE __inline__
#else
#define INLINE
@@ -974,7 +975,13 @@ Boston, MA 02111-1307, USA. */
/* Tell regex.c to use a type compatible with Emacs. */
#define RE_TRANSLATE_TYPE Lisp_Object
#define RE_TRANSLATE(TBL, C) CHAR_TABLE_TRANSLATE (TBL, C)
-#define RE_TRANSLATE_P(TBL) (XFASTINT (TBL) != 0)
+#ifdef make_number
+/* If make_number is a macro, use it. */
+#define RE_TRANSLATE_P(TBL) (!EQ (TBL, make_number (0)))
+#else
+/* If make_number is a function, avoid it. */
+#define RE_TRANSLATE_P(TBL) (!(INTEGERP (TBL) && XINT (TBL) == 0))
+#endif
#endif
/* Avoid link-time collision with system mktime if we will use our own. */