diff src/fns.c @ 96815:be932007d518

by renaming, get rid of need for hash_remove() redefinitions for NS platform; also, adjust nsgui dependencies in Makefile
author Adrian Robert <Adrian.B.Robert@gmail.com>
date Sat, 19 Jul 2008 20:45:36 +0000
parents 1307c33f5e9a
children 9592c50233ab
line wrap: on
line diff
--- a/src/fns.c	Sat Jul 19 17:21:28 2008 +0000
+++ b/src/fns.c	Sat Jul 19 20:45:36 2008 +0000
@@ -4205,7 +4205,7 @@
 /* Remove the entry matching KEY from hash table H, if there is one.  */
 
 static void
-hash_remove (h, key)
+hash_remove_from_table (h, key)
      struct Lisp_Hash_Table *h;
      Lisp_Object key;
 {
@@ -4866,7 +4866,7 @@
      Lisp_Object key, table;
 {
   struct Lisp_Hash_Table *h = check_hash_table (table);
-  hash_remove (h, key);
+  hash_remove_from_table (h, key);
   return Qnil;
 }