Mercurial > hg > xemacs-beta
changeset 507:167135c7a7ae
[xemacs-hg @ 2001-05-05 10:10:36 by martinb]
Target of a DEFVAR_INT should be a Fixnum, not int.
author | martinb |
---|---|
date | Sat, 05 May 2001 10:10:42 +0000 |
parents | 39ccc7dd8077 |
children | 0be8704d6062 |
files | src/ChangeLog src/lisp.h src/search.c |
diffstat | 3 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Sat May 05 08:40:06 2001 +0000 +++ b/src/ChangeLog Sat May 05 10:10:42 2001 +0000 @@ -1,3 +1,8 @@ +2001-05-05 Martin Buchholz <martin@xemacs.org> + + * search.c (warn_about_possibly_incompatible_back_references): + Target of a DEFVAR_INT should be a Fixnum, not int. + 2001-05-05 Ben Wing <ben@xemacs.org> * console-msw.h:
--- a/src/lisp.h Sat May 05 08:40:06 2001 +0000 +++ b/src/lisp.h Sat May 05 10:10:42 2001 +0000 @@ -2859,7 +2859,7 @@ Bytecount, int, Error_behavior, int); Bytecount fast_lisp_string_match (Lisp_Object, Lisp_Object); void restore_match_data (void); -extern int warn_about_possibly_incompatible_back_references; +extern Fixnum warn_about_possibly_incompatible_back_references; /* Defined in signal.c */
--- a/src/search.c Sat May 05 08:40:06 2001 +0000 +++ b/src/search.c Sat May 05 10:10:42 2001 +0000 @@ -104,7 +104,7 @@ /* Regular expressions used in forward/backward-word */ Lisp_Object Vforward_word_regexp, Vbackward_word_regexp; -int warn_about_possibly_incompatible_back_references; +Fixnum warn_about_possibly_incompatible_back_references; /* range table for use with skip_chars. Only needed for Mule. */ Lisp_Object Vskip_chars_range_table;