comparison src/fns.c @ 90863:648e6c714c7d

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 774-780) - Update from CVS - Merge from emacs--rel--22, gnus--rel--5.10 - Merge from emacs--rel--22 - Fix tq.el edge case * emacs--rel--22 (patch 28-32) - Update from CVS * gnus--rel--5.10 (patch 224-225) - Merge from emacs--devo--0, emacs--rel--22 - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-213
author Miles Bader <miles@gnu.org>
date Wed, 30 May 2007 14:40:46 +0000
parents 95d0cdf160ea 223bb8e66f74
children e9f94688a064
comparison
equal deleted inserted replaced
90862:e4b8d2bccfb0 90863:648e6c714c7d
4583 DEFUN ("sxhash", Fsxhash, Ssxhash, 1, 1, 0, 4583 DEFUN ("sxhash", Fsxhash, Ssxhash, 1, 1, 0,
4584 doc: /* Compute a hash code for OBJ and return it as integer. */) 4584 doc: /* Compute a hash code for OBJ and return it as integer. */)
4585 (obj) 4585 (obj)
4586 Lisp_Object obj; 4586 Lisp_Object obj;
4587 { 4587 {
4588 unsigned hash = sxhash (obj, 0);; 4588 unsigned hash = sxhash (obj, 0);
4589 return make_number (hash); 4589 return make_number (hash);
4590 } 4590 }
4591 4591
4592 4592
4593 DEFUN ("make-hash-table", Fmake_hash_table, Smake_hash_table, 0, MANY, 0, 4593 DEFUN ("make-hash-table", Fmake_hash_table, Smake_hash_table, 0, MANY, 0,