diff options
| author | Ken Raeburn | 2002-07-15 02:18:31 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2002-07-15 02:18:31 +0000 |
| commit | bee9190421f32bdd6ec8fa2d18c8084ec8950eb0 (patch) | |
| tree | f46e8acbddf491e793ebadd85cce41c6374a48d4 /src/lread.c | |
| parent | 1e4c5782780719a5bfa23d79d052bb3311ab1438 (diff) | |
| download | emacs-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.c | 2 |
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); |