diff options
author | Lars Brinkhoff <lars@nocrew.org> | 2017-04-03 08:42:18 +0200 |
---|---|---|
committer | Lars Brinkhoff <lars@nocrew.org> | 2017-04-10 08:32:23 +0200 |
commit | c9b173eff5154cfd2d7567cdf400e48c88fd51d2 (patch) | |
tree | e87ce1ccc69052906f8713f4720d9578be6e5534 /src/chartab.c | |
parent | 0fb52dcc45742af58a081bd6ca27b70f6a6a1899 (diff) | |
download | emacs-scratch/pvsize.tar.gz |
Please revew: PVSIZE, pseudovector size.scratch/pvsize
Diffstat (limited to 'src/chartab.c')
-rw-r--r-- | src/chartab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chartab.c b/src/chartab.c index fa5a8e41164..8392c0c07dc 100644 --- a/src/chartab.c +++ b/src/chartab.c @@ -185,7 +185,7 @@ Lisp_Object copy_char_table (Lisp_Object table) { Lisp_Object copy; - int size = XCHAR_TABLE (table)->header.size & PSEUDOVECTOR_SIZE_MASK; + int size = PVSIZE (table); int i; copy = Fmake_vector (make_number (size), Qnil); |