From 6fa2b890d4f182a40fed28f9b99a7b82b33f516d Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Thu, 23 Jun 2005 16:10:06 +0000 Subject: [PATCH] (read_vector): Follow error conventions. --- src/lread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.39.2