]> git.eshelyaron.com Git - emacs.git/commitdiff
Minor simplification of module_free_global_ref
authorPhilipp Stephani <phst@google.com>
Sun, 9 Jul 2017 22:33:30 +0000 (00:33 +0200)
committerPhilipp Stephani <phst@google.com>
Sun, 9 Jul 2017 22:33:30 +0000 (00:33 +0200)
* src/emacs-module.c (module_free_global_ref): Remove unused variable
'hashcode'.  Inline variable 'value' that's only used once.

src/emacs-module.c

index 7e0ba3c16c107641dbea8758a55c7c7ddc0231e5..ad6c8fb01046cd2394ac2f85dd017a0cfd3285b0 100644 (file)
@@ -315,18 +315,13 @@ module_free_global_ref (emacs_env *env, emacs_value ref)
   MODULE_FUNCTION_BEGIN ();
   struct Lisp_Hash_Table *h = XHASH_TABLE (Vmodule_refs_hash);
   Lisp_Object obj = value_to_lisp (ref);
-  EMACS_UINT hashcode;
-  ptrdiff_t i = hash_lookup (h, obj, &hashcode);
+  ptrdiff_t i = hash_lookup (h, obj, NULL);
 
   if (i >= 0)
     {
-      Lisp_Object value = HASH_VALUE (h, i);
-      EMACS_INT refcount = XFASTINT (value) - 1;
+      EMACS_INT refcount = XFASTINT (HASH_VALUE (h, i)) - 1;
       if (refcount > 0)
-        {
-          value = make_natnum (refcount);
-          set_hash_value_slot (h, i, value);
-        }
+        set_hash_value_slot (h, i, make_natnum (refcount));
       else
         {
           eassert (refcount == 0);