]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fgethash): Fix order of variables (patch by gerd).
authorMarkus Rost <rost@math.uni-bielefeld.de>
Mon, 26 Jul 1999 22:20:21 +0000 (22:20 +0000)
committerMarkus Rost <rost@math.uni-bielefeld.de>
Mon, 26 Jul 1999 22:20:21 +0000 (22:20 +0000)
(Fputhash): Ditto.
(Fremhash): Ditto.

src/fns.c

index a9b2d2af9eee3c748b34d6c5c310d1d28f1fd984..554db9834132076471dca506953761344a7cc057 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -4369,8 +4369,8 @@ DEFUN ("clrhash", Fclrhash, Sclrhash, 1, 1, 0,
 DEFUN ("gethash", Fgethash, Sgethash, 2, 3, 0,
   "Look up KEY in TABLE and return its associated value.\n\
 If KEY is not found, return DFLT which defaults to nil.")
-  (table, key, dflt)
-     Lisp_Object table, key;
+  (key, table, dflt)
+     Lisp_Object key, table;
 {
   struct Lisp_Hash_Table *h = check_hash_table (table);
   int i = hash_lookup (h, key, NULL);
@@ -4382,8 +4382,8 @@ DEFUN ("puthash", Fputhash, Sputhash, 3, 3, 0,
   "Associate KEY with VALUE is hash table TABLE.\n\
 If KEY is already present in table, replace its current value with\n\
 VALUE.")
-  (table, key, value)
-     Lisp_Object table, key, value;
+  (key, value, table)
+     Lisp_Object key, value, table;
 {
   struct Lisp_Hash_Table *h = check_hash_table (table);
   int i;
@@ -4401,8 +4401,8 @@ VALUE.")
 
 DEFUN ("remhash", Fremhash, Sremhash, 2, 2, 0,
   "Remove KEY from TABLE.")
-  (table, key)
-     Lisp_Object table, key;
+  (key, table)
+     Lisp_Object key, table;
 {
   struct Lisp_Hash_Table *h = check_hash_table (table);
   hash_remove (h, key);