diff options
| author | Jim Blandy | 1993-02-22 14:48:45 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-02-22 14:48:45 +0000 |
| commit | b37902c85cccb00cc1d97229780cb95eaabcdeed (patch) | |
| tree | ce88fab7806f5217ef7f388bf459461e74fbcbaf /src/search.c | |
| parent | 6be429b16949ffce383dcec596f4edd4b08ad15e (diff) | |
| download | emacs-b37902c85cccb00cc1d97229780cb95eaabcdeed.tar.gz emacs-b37902c85cccb00cc1d97229780cb95eaabcdeed.zip | |
* 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.c | 2 |
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.") | |||
| 1359 | register Lisp_Object marker; | 1359 | register Lisp_Object marker; |
| 1360 | 1360 | ||
| 1361 | if (!CONSP (list) && !NILP (list)) | 1361 | if (!CONSP (list) && !NILP (list)) |
| 1362 | list = wrong_type_argument (Qconsp, list, 0); | 1362 | list = wrong_type_argument (Qconsp, list); |
| 1363 | 1363 | ||
| 1364 | /* Unless we find a marker with a buffer in LIST, assume that this | 1364 | /* Unless we find a marker with a buffer in LIST, assume that this |
| 1365 | match data came from a string. */ | 1365 | match data came from a string. */ |