(Fccl_execute_on_string): Put \n\ at end-of-line of
[bpt/emacs.git] / src / fns.c
index b0b8e21..a724fa5 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -183,6 +183,7 @@ DEFUN ("string-bytes", Fstring_bytes, Sstring_bytes, 1, 1, 0,
   "Return the number of bytes in STRING.\n\
 If STRING is a multibyte string, this is greater than the length of STRING.")
   (string)
+     Lisp_Object string;
 {
   CHECK_STRING (string, 1);
   return make_number (XSTRING (string)->size_byte);
@@ -1851,7 +1852,7 @@ See also the documentation of make-char.")
   c = XINT (ch);
   SPLIT_NON_ASCII_CHAR (c, charset, code1, code2);
   if (! CHARSET_DEFINED_P (charset))
-    error ("Invalid character: %d", c);
+    invalid_character (c);
 
   if (charset == CHARSET_ASCII)
     return (XCHAR_TABLE (char_table)->defalt = value);