summaryrefslogtreecommitdiff
path: root/src/search.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-02-22 14:48:45 +0000
committerJim Blandy <jimb@redhat.com>1993-02-22 14:48:45 +0000
commit689b265aef341e53c30c5193fa953ec6c4de4f9c (patch)
treec60033f91b8c559fec88fe33f583056adc5ac257 /src/search.c
parentd8a432076e8583dd94924511511b8ffb744c478a (diff)
downloademacs-689b265aef341e53c30c5193fa953ec6c4de4f9c.tar.gz
* callint.c (Fcall_interactively): Pass the correct number of
arguments to wrong_type_argument. * casefiddle.c (caseify_object): Same. * casetab.c (check_case_table): Same. * search.c (Fstore_match_data): Same. * syntax.c (check_syntax_table): Same.
Diffstat (limited to 'src/search.c')
-rw-r--r--src/search.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/search.c b/src/search.c
index 158ece9bf53..c837dbee071 100644
--- a/src/search.c
+++ b/src/search.c
@@ -1359,7 +1359,7 @@ LIST should have been created by calling `match-data' previously.")
register Lisp_Object marker;
if (!CONSP (list) && !NILP (list))
- list = wrong_type_argument (Qconsp, list, 0);
+ list = wrong_type_argument (Qconsp, list);
/* Unless we find a marker with a buffer in LIST, assume that this
match data came from a string. */