1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-12 16:23:57 +00:00

(Flognot): Fix previous change.

This commit is contained in:
Karl Heuer 1996-01-09 02:52:23 +00:00
parent 636b7260dc
commit 53924017eb

View File

@ -2333,7 +2333,7 @@ DEFUN ("lognot", Flognot, Slognot, 1, 1, 0,
register Lisp_Object number;
{
CHECK_NUMBER (number, 0);
XSETINT (num, ~XINT (number));
XSETINT (number, ~XINT (number));
return number;
}