From: Stefan Monnier Date: Fri, 12 Apr 2002 05:55:04 +0000 (+0000) Subject: (gen_help_event): int/Lisp_Object confusion. X-Git-Tag: ttn-vms-21-2-B4~15666 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=781347899ef38cb84e607a57bfc08b92b6e17f19;p=emacs.git (gen_help_event): int/Lisp_Object confusion. --- diff --git a/src/keyboard.c b/src/keyboard.c index 0ea0bcaef25..c5956e5e7b8 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -3457,7 +3457,7 @@ gen_help_event (bufp, size, help, frame, window, object, pos) bufp->arg = object; bufp->x = WINDOWP (window) ? window : frame; bufp->y = help; - bufp->code = make_number (pos); + bufp->code = pos; return 1; } return 0;