1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 03:40:56 -08:00

(Fsxhash): Delete stray semicolon.

This commit is contained in:
Chong Yidong 2007-06-05 00:24:47 +00:00
parent 685cdf3a51
commit 44f015d2a4

View file

@ -5212,7 +5212,7 @@ DEFUN ("sxhash", Fsxhash, Ssxhash, 1, 1, 0,
(obj)
Lisp_Object obj;
{
unsigned hash = sxhash (obj, 0);;
unsigned hash = sxhash (obj, 0);
return make_number (hash);
}