Mercurial > hg > xemacs-beta
comparison src/search.c @ 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 | 7039e6323819 |
children | 183866b06e0b |
comparison
equal
deleted
inserted
replaced
506:39ccc7dd8077 | 507:167135c7a7ae |
---|---|
102 Lisp_Object Qinvalid_regexp; | 102 Lisp_Object Qinvalid_regexp; |
103 | 103 |
104 /* Regular expressions used in forward/backward-word */ | 104 /* Regular expressions used in forward/backward-word */ |
105 Lisp_Object Vforward_word_regexp, Vbackward_word_regexp; | 105 Lisp_Object Vforward_word_regexp, Vbackward_word_regexp; |
106 | 106 |
107 int warn_about_possibly_incompatible_back_references; | 107 Fixnum warn_about_possibly_incompatible_back_references; |
108 | 108 |
109 /* range table for use with skip_chars. Only needed for Mule. */ | 109 /* range table for use with skip_chars. Only needed for Mule. */ |
110 Lisp_Object Vskip_chars_range_table; | 110 Lisp_Object Vskip_chars_range_table; |
111 | 111 |
112 static void set_search_regs (struct buffer *buf, Bufpos beg, Charcount len); | 112 static void set_search_regs (struct buffer *buf, Bufpos beg, Charcount len); |