# HG changeset patch # User martinb # Date 989057442 0 # Node ID 167135c7a7ae0c698a968ff19844352cb2b241b8 # Parent 39ccc7dd80775ed6b826b6be10cdfb7274fe4511 [xemacs-hg @ 2001-05-05 10:10:36 by martinb] Target of a DEFVAR_INT should be a Fixnum, not int. diff -r 39ccc7dd8077 -r 167135c7a7ae src/ChangeLog --- 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 + + * search.c (warn_about_possibly_incompatible_back_references): + Target of a DEFVAR_INT should be a Fixnum, not int. + 2001-05-05 Ben Wing * console-msw.h: diff -r 39ccc7dd8077 -r 167135c7a7ae src/lisp.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 */ diff -r 39ccc7dd8077 -r 167135c7a7ae src/search.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;