summaryrefslogtreecommitdiff
path: root/src/emacs-module.c
diff options
context:
space:
mode:
authorPhilipp Stephani <phst@google.com>2019-04-19 18:38:19 +0200
committerPhilipp Stephani <phst@google.com>2019-04-19 18:41:15 +0200
commit8aadf6e415b7801cb9fa4c5670b1750da207cf87 (patch)
treebe5b2ff82b5ffa0ef44684a76a9ad1676f13d3ed /src/emacs-module.c
parentbd93bcb078f29e9b5fa127d6cef0bdeeab5c2285 (diff)
downloademacs-8aadf6e415b7801cb9fa4c5670b1750da207cf87.tar.gz
emacs-8aadf6e415b7801cb9fa4c5670b1750da207cf87.tar.bz2
emacs-8aadf6e415b7801cb9fa4c5670b1750da207cf87.zip
Refactoring: simplify definition of some internal variables.
In some cases, we never specbind internal objects, so they don't have to be symbols. Rather than using DEFSYM/DEFVAR and then uninterning the symbols, use plain static variables. Call staticpro for all of them, to protect them from the garbage collector. * src/eval.c (syms_of_eval): Use a static variable for Qcatch_all_memory_full. * src/emacs-module.c (syms_of_module): Use static variables for Vmodule_refs_hash, Vmodule_runtimes, and Vmodule_environments.
Diffstat (limited to 'src/emacs-module.c')
-rw-r--r--src/emacs-module.c30
1 files changed, 9 insertions, 21 deletions
diff --git a/src/emacs-module.c b/src/emacs-module.c
index 393a4354b88..ad32d3a91f1 100644
--- a/src/emacs-module.c
+++ b/src/emacs-module.c
@@ -349,6 +349,8 @@ module_get_environment (struct emacs_runtime *ert)
/* To make global refs (GC-protected global values) keep a hash that
maps global Lisp objects to reference counts. */
+static Lisp_Object Vmodule_refs_hash;
+
static emacs_value
module_make_global_ref (emacs_env *env, emacs_value ref)
{
@@ -760,6 +762,10 @@ module_signal_or_throw (struct emacs_env_private *env)
}
}
+/* Live runtime and environment objects, for assertions. */
+static Lisp_Object Vmodule_runtimes;
+static Lisp_Object Vmodule_environments;
+
DEFUN ("module-load", Fmodule_load, Smodule_load, 1, 1, 0,
doc: /* Load module FILE. */)
(Lisp_Object file)
@@ -1228,31 +1234,17 @@ module_abort (const char *format, ...)
void
syms_of_module (void)
{
- DEFSYM (Qmodule_refs_hash, "module-refs-hash");
- DEFVAR_LISP ("module-refs-hash", Vmodule_refs_hash,
- doc: /* Module global reference table. */);
-
+ staticpro (&Vmodule_refs_hash);
Vmodule_refs_hash
= make_hash_table (hashtest_eq, DEFAULT_HASH_SIZE,
DEFAULT_REHASH_SIZE, DEFAULT_REHASH_THRESHOLD,
Qnil, false);
- Funintern (Qmodule_refs_hash, Qnil);
- DEFSYM (Qmodule_runtimes, "module-runtimes");
- DEFVAR_LISP ("module-runtimes", Vmodule_runtimes,
- doc: /* List of active module runtimes. */);
+ staticpro (&Vmodule_runtimes);
Vmodule_runtimes = Qnil;
- /* Unintern `module-runtimes' because it is only used
- internally. */
- Funintern (Qmodule_runtimes, Qnil);
- DEFSYM (Qmodule_environments, "module-environments");
- DEFVAR_LISP ("module-environments", Vmodule_environments,
- doc: /* List of active module environments. */);
+ staticpro (&Vmodule_environments);
Vmodule_environments = Qnil;
- /* Unintern `module-environments' because it is only used
- internally. */
- Funintern (Qmodule_environments, Qnil);
DEFSYM (Qmodule_load_failed, "module-load-failed");
Fput (Qmodule_load_failed, Qerror_conditions,
@@ -1291,10 +1283,6 @@ syms_of_module (void)
Fput (Qinvalid_arity, Qerror_message,
build_pure_c_string ("Invalid function arity"));
- /* Unintern `module-refs-hash' because it is internal-only and Lisp
- code or modules should not access it. */
- Funintern (Qmodule_refs_hash, Qnil);
-
DEFSYM (Qmodule_function_p, "module-function-p");
defsubr (&Smodule_load);