diff options
| author | Pip Cet | 2024-08-20 19:04:44 +0000 |
|---|---|---|
| committer | Stefan Kangas | 2024-12-12 22:48:12 +0100 |
| commit | afd61deaaeb5e5e6845bdf995ac5ee9a3479599c (patch) | |
| tree | a13e37e2a5ad40374959fe263ebb4e2a8a484ed2 /src/pgtkterm.c | |
| parent | e1e101c6c10b6e5110c2c47946d477a752828a78 (diff) | |
| download | emacs-afd61deaaeb5e5e6845bdf995ac5ee9a3479599c.tar.gz emacs-afd61deaaeb5e5e6845bdf995ac5ee9a3479599c.zip | |
Pure storage removal: Remove purecopy hash table flag
* lisp/emacs-liqsp/comp.el (comp--jump-table-optimizable): Adjust
comment.
* src/category.c (hash_get_category_set):
* src/emacs-module.c (syms_of_module):
* src/fns.c (make_hash_table): Remove 'purecopy' flag and update
docstring.
(Fmake_hash_table): Ignore ':purecopy' argument.
* src/frame.c (make_frame):
* src/image.c (xpm_make_color_table_h):
* src/lisp.h (struct Lisp_Hash_Table): Drop 'purecopy' flag.
* src/pdumper.c (dump_hash_table): Don't dump 'purecopy' flag.
* src/print.c (print_object): Don't print 'purecopy' flag
* src/json.c (json_parse_object):
* src/lread.c (readevalloop, read_internal_start):
* src/pgtkterm.c (syms_of_pgtkterm):
* src/profiler.c (export_log):
* src/xfaces.c (syms_of_xfaces):
* src/xterm.c (syms_of_xterm): Adjust calls to 'make_hash_table'.
Diffstat (limited to 'src/pgtkterm.c')
| -rw-r--r-- | src/pgtkterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pgtkterm.c b/src/pgtkterm.c index 246604ec18b..5b55c1b488d 100644 --- a/src/pgtkterm.c +++ b/src/pgtkterm.c | |||
| @@ -7485,7 +7485,7 @@ If set to a non-float value, there will be no wait at all. */); | |||
| 7485 | 7485 | ||
| 7486 | DEFVAR_LISP ("pgtk-keysym-table", Vpgtk_keysym_table, | 7486 | DEFVAR_LISP ("pgtk-keysym-table", Vpgtk_keysym_table, |
| 7487 | doc: /* Hash table of character codes indexed by X keysym codes. */); | 7487 | doc: /* Hash table of character codes indexed by X keysym codes. */); |
| 7488 | Vpgtk_keysym_table = make_hash_table (&hashtest_eql, 900, Weak_None, false); | 7488 | Vpgtk_keysym_table = make_hash_table (&hashtest_eql, 900, Weak_None); |
| 7489 | 7489 | ||
| 7490 | window_being_scrolled = Qnil; | 7490 | window_being_scrolled = Qnil; |
| 7491 | staticpro (&window_being_scrolled); | 7491 | staticpro (&window_being_scrolled); |