diff options
author | Andrea Corallo <andrea_corallo@yahoo.it> | 2019-06-15 18:07:59 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-01-01 11:33:42 +0100 |
commit | 4ca1857b501875fa3695ee7d42712e681c4767f4 (patch) | |
tree | e269b1ec514ddda019e2ffc79145c58e95f26b7a /src/lread.c | |
parent | a11dc2c8ad5f4162fbad497ce7a813d9f58837b4 (diff) | |
download | emacs-4ca1857b501875fa3695ee7d42712e681c4767f4.tar.gz emacs-4ca1857b501875fa3695ee7d42712e681c4767f4.tar.bz2 emacs-4ca1857b501875fa3695ee7d42712e681c4767f4.zip |
fix intern_c_string_1
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 bedb3d57cb5..ca7b29f690b 100644 --- a/src/lread.c +++ b/src/lread.c @@ -4178,7 +4178,7 @@ intern_c_string_1 (const char *str, ptrdiff_t len) if (!SYMBOLP (tem)) { - if NILP (Vpurify_flag) + if (NILP (Vpurify_flag)) string = make_string (str, len); else string = make_pure_c_string (str, len); |