diff options
author | Eli Zaretskii <eliz@gnu.org> | 2019-03-17 17:49:37 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2019-03-17 17:49:37 +0200 |
commit | 03a9a75c5b8bfb5187bffdcca2d52419ef5f950a (patch) | |
tree | ccc06fa4e20656fc119b59e215052894e5ea4a3d /src/charset.h | |
parent | 3320fe2deeba6dcc40e934e8a03bef4945c86aff (diff) | |
download | emacs-03a9a75c5b8bfb5187bffdcca2d52419ef5f950a.tar.gz |
Fix 'define-charset' after dumping with pdumper
* src/charset.h:
* src/charset.c (charset_table_used): Now static.
(charset_table_size): Now extern.
* src/pdumper.c (dump_charset_table): Dump the entire
charset_table, not just its used slots. (Bug#34826)
Diffstat (limited to 'src/charset.h')
-rw-r--r-- | src/charset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.h b/src/charset.h index ee697b8d3ef..7042a71a469 100644 --- a/src/charset.h +++ b/src/charset.h @@ -248,7 +248,7 @@ extern Lisp_Object Vcharset_hash_table; /* Table of struct charset. */ extern struct charset *charset_table; -extern int charset_table_used; +extern int charset_table_size; #define CHARSET_FROM_ID(id) (charset_table + (id)) |