aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-02-22 14:48:45 +0000
committerJim Blandy1993-02-22 14:48:45 +0000
commitb37902c85cccb00cc1d97229780cb95eaabcdeed (patch)
treece88fab7806f5217ef7f388bf459461e74fbcbaf
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.
-rw-r--r--src/callint.c2
-rw-r--r--src/casefiddle.c2
-rw-r--r--src/casetab.c2
-rw-r--r--src/search.c2
4 files changed, 4 insertions, 4 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)
diff --git a/src/casefiddle.c b/src/casefiddle.c
index 6682bc17fe7..d496ffdf6dd 100644
--- a/src/casefiddle.c
+++ b/src/casefiddle.c
@@ -65,7 +65,7 @@ casify_object (flag, obj)
65 } 65 }
66 return obj; 66 return obj;
67 } 67 }
68 obj = wrong_type_argument (Qchar_or_string_p, obj, 0); 68 obj = wrong_type_argument (Qchar_or_string_p, obj);
69 } 69 }
70} 70}
71 71
diff --git a/src/casetab.c b/src/casetab.c
index 3ea81e36bf1..7ad648c194c 100644
--- a/src/casetab.c
+++ b/src/casetab.c
@@ -58,7 +58,7 @@ check_case_table (obj)
58 register Lisp_Object tem; 58 register Lisp_Object tem;
59 59
60 while (tem = Fcase_table_p (obj), NILP (tem)) 60 while (tem = Fcase_table_p (obj), NILP (tem))
61 obj = wrong_type_argument (Qcase_table_p, obj, 0); 61 obj = wrong_type_argument (Qcase_table_p, obj);
62 return (obj); 62 return (obj);
63} 63}
64 64
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. */