aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1998-02-09 00:21:15 +0000
committerRichard M. Stallman1998-02-09 00:21:15 +0000
commit3135e9fd79018f6331ce0c37116f64032a8c81a1 (patch)
tree091f3b1cf472f382929ec6ab1acaf2001a5b7827 /src
parent4f493b7c94074a27da54ab1292a7b9476465574b (diff)
downloademacs-3135e9fd79018f6331ce0c37116f64032a8c81a1.tar.gz
emacs-3135e9fd79018f6331ce0c37116f64032a8c81a1.zip
(search_command): Fix call to search_buffer.
Diffstat (limited to 'src')
-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)
892 np = search_buffer (string, PT, PT_BYTE, lim, lim_byte, n, RE, 892 np = search_buffer (string, PT, PT_BYTE, lim, lim_byte, n, RE,
893 (!NILP (current_buffer->case_fold_search) 893 (!NILP (current_buffer->case_fold_search)
894 ? current_buffer->case_canon_table 894 ? current_buffer->case_canon_table
895 : make_number (0)), 895 : Qnil),
896 (!NILP (current_buffer->case_fold_search) 896 (!NILP (current_buffer->case_fold_search)
897 ? current_buffer->case_eqv_table 897 ? current_buffer->case_eqv_table
898 : make_number (0)), 898 : Qnil),
899 posix); 899 posix);
900 if (np <= 0) 900 if (np <= 0)
901 { 901 {