summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2005-06-23 16:10:06 +0000
committerJuanma Barranquero <lekktu@gmail.com>2005-06-23 16:10:06 +0000
commit6fa2b890d4f182a40fed28f9b99a7b82b33f516d (patch)
tree21857af1241b68638f7777b5f3a3971654226784 /src
parentb5251fe73ae82d411ac1af6a6f4daa85508a5198 (diff)
downloademacs-6fa2b890d4f182a40fed28f9b99a7b82b33f516d.tar.gz
(read_vector): Follow error conventions.
Diffstat (limited to 'src')
-rw-r--r--src/lread.c4
1 files 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);