aboutsummaryrefslogtreecommitdiffstats
path: root/src/lread.c
diff options
context:
space:
mode:
authorKen Raeburn2002-07-15 02:18:31 +0000
committerKen Raeburn2002-07-15 02:18:31 +0000
commitbee9190421f32bdd6ec8fa2d18c8084ec8950eb0 (patch)
treef46e8acbddf491e793ebadd85cce41c6374a48d4 /src/lread.c
parent1e4c5782780719a5bfa23d79d052bb3311ab1438 (diff)
downloademacs-bee9190421f32bdd6ec8fa2d18c8084ec8950eb0.tar.gz
emacs-bee9190421f32bdd6ec8fa2d18c8084ec8950eb0.zip
* lread.c (read_vector): Use STRING_SET_CHARS.
Diffstat (limited to 'src/lread.c')
-rw-r--r--src/lread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c
index 6900e337c7c..3b06968e084 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -2760,7 +2760,7 @@ read_vector (readcharfun, bytecodeflag)
2760 /* Coerce string to unibyte (like string-as-unibyte, 2760 /* Coerce string to unibyte (like string-as-unibyte,
2761 but without generating extra garbage and 2761 but without generating extra garbage and
2762 guaranteeing no change in the contents). */ 2762 guaranteeing no change in the contents). */
2763 SCHARS (bytestr) = SBYTES (bytestr); 2763 STRING_SET_CHARS (bytestr, SBYTES (bytestr));
2764 STRING_SET_UNIBYTE (bytestr); 2764 STRING_SET_UNIBYTE (bytestr);
2765 2765
2766 item = Fread (bytestr); 2766 item = Fread (bytestr);