Mercurial > emacs
comparison src/fns.c @ 77908:e5fb6472b6db
(Fsxhash): Delete stray semicolon.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Tue, 05 Jun 2007 00:24:47 +0000 |
parents | 3d45362f1d38 |
children | 922696f363b0 f5adf7770714 4c726a40604c 648e6c714c7d |
comparison
equal
deleted
inserted
replaced
77907:c53c9b6a0e5b | 77908:e5fb6472b6db |
---|---|
5210 DEFUN ("sxhash", Fsxhash, Ssxhash, 1, 1, 0, | 5210 DEFUN ("sxhash", Fsxhash, Ssxhash, 1, 1, 0, |
5211 doc: /* Compute a hash code for OBJ and return it as integer. */) | 5211 doc: /* Compute a hash code for OBJ and return it as integer. */) |
5212 (obj) | 5212 (obj) |
5213 Lisp_Object obj; | 5213 Lisp_Object obj; |
5214 { | 5214 { |
5215 unsigned hash = sxhash (obj, 0);; | 5215 unsigned hash = sxhash (obj, 0); |
5216 return make_number (hash); | 5216 return make_number (hash); |
5217 } | 5217 } |
5218 | 5218 |
5219 | 5219 |
5220 DEFUN ("make-hash-table", Fmake_hash_table, Smake_hash_table, 0, MANY, 0, | 5220 DEFUN ("make-hash-table", Fmake_hash_table, Smake_hash_table, 0, MANY, 0, |