diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-07-20 19:40:03 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-07-20 20:13:45 -0700 |
commit | df5024dbaef5e1f7e39a2a8268523f9fc1af3118 (patch) | |
tree | 198160b55edc6d82ca64fcb3271333cc5d1f0a75 /src/lisp.h | |
parent | b0908a0fe6dc4f878b05a8b26ed3ff0c702e26c7 (diff) | |
download | emacs-df5024dbaef5e1f7e39a2a8268523f9fc1af3118.tar.gz emacs-df5024dbaef5e1f7e39a2a8268523f9fc1af3118.tar.bz2 emacs-df5024dbaef5e1f7e39a2a8268523f9fc1af3118.zip |
Rename ‘pure’ to ‘purecopy’
* src/lisp.h (struct Lisp_Hash_Table): Rename ‘pure’ member to
‘purecopy’, as the old name was quite confusing (it did not
mean the hash table was pure). All uses changed.
Diffstat (limited to 'src/lisp.h')
-rw-r--r-- | src/lisp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index 13014c82dc3..8f60963eb7e 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -2287,7 +2287,7 @@ struct Lisp_Hash_Table /* True if the table can be purecopied. The table cannot be changed afterwards. */ - bool pure; + bool purecopy; /* Resize hash table when number of entries / table size is >= this ratio. */ |