aboutsummaryrefslogtreecommitdiffstats
path: root/src/callint.c
diff options
context:
space:
mode:
authorJim Blandy1993-02-22 14:48:45 +0000
committerJim Blandy1993-02-22 14:48:45 +0000
commitb37902c85cccb00cc1d97229780cb95eaabcdeed (patch)
treece88fab7806f5217ef7f388bf459461e74fbcbaf /src/callint.c
parent6be429b16949ffce383dcec596f4edd4b08ad15e (diff)
downloademacs-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/callint.c')
-rw-r--r--src/callint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c
index ffa2fa39539..d688f0e2b1c 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -210,7 +210,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
210 if (!string) 210 if (!string)
211 { 211 {
212 lose: 212 lose:
213 function = wrong_type_argument (Qcommandp, function, 0); 213 function = wrong_type_argument (Qcommandp, function);
214 goto retry; 214 goto retry;
215 } 215 }
216 if ((int) string == 1) 216 if ((int) string == 1)