emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/config.in


From: Richard M . Stallman
Subject: [Emacs-diffs] Changes to emacs/src/config.in
Date: Thu, 02 Dec 2004 18:59:22 -0500

Index: emacs/src/config.in
diff -c emacs/src/config.in:1.203 emacs/src/config.in:1.204
*** emacs/src/config.in:1.203   Tue Nov 23 05:20:49 2004
--- emacs/src/config.in Thu Dec  2 23:43:51 2004
***************
*** 969,975 ****
--- 969,981 ----
  /* 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)
+ #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.  */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]