From: Karl Heuer Date: Tue, 9 Jan 1996 02:52:23 +0000 (+0000) Subject: (Flognot): Fix previous change. X-Git-Tag: emacs-19.34~1764 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=53924017eb9986d223613665d66150abd8efa065;p=emacs.git (Flognot): Fix previous change. --- diff --git a/src/data.c b/src/data.c index 3e8004d0931..22c0db36067 100644 --- a/src/data.c +++ b/src/data.c @@ -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; }