+2004-11-27 Kim F. Storm <storm@cua.dk>
+
+ * search.c (syms_of_search) <search-spaces-regexp>: Move 'doc:'
+ marker out of doc string.
+
2004-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
* s/darwin.h (POSIX_SIGNALS): Undo the removal of 2002-08-25,
else
{
int from;
-
+
if (MARKERP (marker))
{
if (XMARKER (marker)->buffer == 0)
else
XSETBUFFER (last_thing_searched, XMARKER (marker)->buffer);
}
-
+
CHECK_NUMBER_COERCE_MARKER (marker);
from = XINT (marker);
list = Fcdr (list);
-
+
marker = Fcar (list);
if (MARKERP (marker) && XMARKER (marker)->buffer == 0)
XSETFASTINT (marker, 0);
-
+
CHECK_NUMBER_COERCE_MARKER (marker);
search_regs.start[i] = from;
search_regs.end[i] = XINT (marker);
staticpro (&saved_last_thing_searched);
DEFVAR_LISP ("search-spaces-regexp", &Vsearch_spaces_regexp,
- /* doc: Regexp to substitute for bunches of spaces in regexp search.
+ doc: /* Regexp to substitute for bunches of spaces in regexp search.
Some commands use this for user-specified regexps.
Spaces that occur inside character classes or repetition operators
or other such regexp constructs are not replaced with this.