summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-02-09 00:21:15 +0000
committerRichard M. Stallman <rms@gnu.org>1998-02-09 00:21:15 +0000
commitcf88211f459958ddc4147bf28207d39a4b67e7f3 (patch)
tree30ee82efbce3df7604d61c92b430b76f3d072a5d
parentd2fe743a03eb36492cf70bc31d0cb5b2fb43a0d3 (diff)
downloademacs-cf88211f459958ddc4147bf28207d39a4b67e7f3.tar.gz
(search_command): Fix call to search_buffer.
-rw-r--r--src/search.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/search.c b/src/search.c
index c3081f95657..9781c65d8d0 100644
--- a/src/search.c
+++ b/src/search.c
@@ -892,10 +892,10 @@ search_command (string, bound, noerror, count, direction, RE, posix)
np = search_buffer (string, PT, PT_BYTE, lim, lim_byte, n, RE,
(!NILP (current_buffer->case_fold_search)
? current_buffer->case_canon_table
- : make_number (0)),
+ : Qnil),
(!NILP (current_buffer->case_fold_search)
? current_buffer->case_eqv_table
- : make_number (0)),
+ : Qnil),
posix);
if (np <= 0)
{