Mercurial > emacs
changeset 63699:4089414d3208
(read_vector): Follow error conventions.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Thu, 23 Jun 2005 16:10:06 +0000 |
parents | e7e58f0947fe |
children | cf2de0907f25 |
files | src/lread.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/lread.c Thu Jun 23 16:08:43 2005 +0000 +++ b/src/lread.c Thu Jun 23 16:10:06 2005 +0000 @@ -2845,7 +2845,7 @@ 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 @@ item = Fread (bytestr); if (!CONSP (item)) - error ("invalid byte code"); + error ("Invalid byte code"); otem = XCONS (item); bytestr = XCAR (item);