From: Juanma Barranquero Date: Thu, 23 Jun 2005 16:10:06 +0000 (+0000) Subject: (read_vector): Follow error conventions. X-Git-Tag: emacs-pretest-22.0.90~8701 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6fa2b890d4f182a40fed28f9b99a7b82b33f516d;p=emacs.git (read_vector): Follow error conventions. --- diff --git a/src/lread.c b/src/lread.c index b0262ebea79..9317933013e 100644 --- a/src/lread.c +++ b/src/lread.c @@ -2845,7 +2845,7 @@ read_vector (readcharfun, bytecodeflag) if (i == COMPILED_BYTECODE) { if (!STRINGP (item)) - error ("invalid byte code"); + error ("Invalid byte code"); /* Delay handling the bytecode slot until we know whether it is lazily-loaded (we can tell by whether the @@ -2867,7 +2867,7 @@ read_vector (readcharfun, bytecodeflag) item = Fread (bytestr); if (!CONSP (item)) - error ("invalid byte code"); + error ("Invalid byte code"); otem = XCONS (item); bytestr = XCAR (item);