summaryrefslogtreecommitdiff
path: root/src/pdumper.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2019-07-20 19:40:03 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2019-07-20 20:13:45 -0700
commitdf5024dbaef5e1f7e39a2a8268523f9fc1af3118 (patch)
tree198160b55edc6d82ca64fcb3271333cc5d1f0a75 /src/pdumper.c
parentb0908a0fe6dc4f878b05a8b26ed3ff0c702e26c7 (diff)
downloademacs-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/pdumper.c')
-rw-r--r--src/pdumper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pdumper.c b/src/pdumper.c
index 03c00bf27b7..206a1968909 100644
--- a/src/pdumper.c
+++ b/src/pdumper.c
@@ -2741,7 +2741,7 @@ dump_hash_table (struct dump_context *ctx,
them as close to the hash table as possible. */
DUMP_FIELD_COPY (out, hash, count);
DUMP_FIELD_COPY (out, hash, next_free);
- DUMP_FIELD_COPY (out, hash, pure);
+ DUMP_FIELD_COPY (out, hash, purecopy);
DUMP_FIELD_COPY (out, hash, rehash_threshold);
DUMP_FIELD_COPY (out, hash, rehash_size);
dump_field_lv (ctx, out, hash, &hash->key_and_value, WEIGHT_STRONG);