comparison src/casefiddle.c @ 71970:7477595dfc6f

(casify_object): wrong_type_argument is no-return.
author Kim F. Storm <storm@cua.dk>
date Tue, 18 Jul 2006 13:26:00 +0000
parents 5e4428007299
children f6de516bbb4b
comparison
equal deleted inserted replaced
71969:34c5e405ed37 71970:7477595dfc6f
109 i += to_len; 109 i += to_len;
110 } 110 }
111 return obj; 111 return obj;
112 } 112 }
113 113
114 return wrong_type_argument (Qchar_or_string_p, obj); 114 wrong_type_argument (Qchar_or_string_p, obj);
115 } 115 }
116 116
117 DEFUN ("upcase", Fupcase, Supcase, 1, 1, 0, 117 DEFUN ("upcase", Fupcase, Supcase, 1, 1, 0,
118 doc: /* Convert argument to upper case and return that. 118 doc: /* Convert argument to upper case and return that.
119 The argument may be a character or string. The result has the same type. 119 The argument may be a character or string. The result has the same type.