diff options
| author | Stefan Monnier | 2002-04-12 05:55:04 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-04-12 05:55:04 +0000 |
| commit | 781347899ef38cb84e607a57bfc08b92b6e17f19 (patch) | |
| tree | b680627ef783e46ff8557944a672a3a1ee71e45b /src | |
| parent | 034a7130ba2a8f51d1cb8538ac5ec0b85190c700 (diff) | |
| download | emacs-781347899ef38cb84e607a57bfc08b92b6e17f19.tar.gz emacs-781347899ef38cb84e607a57bfc08b92b6e17f19.zip | |
(gen_help_event): int/Lisp_Object confusion.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 3457 | bufp->arg = object; | 3457 | bufp->arg = object; |
| 3458 | bufp->x = WINDOWP (window) ? window : frame; | 3458 | bufp->x = WINDOWP (window) ? window : frame; |
| 3459 | bufp->y = help; | 3459 | bufp->y = help; |
| 3460 | bufp->code = make_number (pos); | 3460 | bufp->code = pos; |
| 3461 | return 1; | 3461 | return 1; |
| 3462 | } | 3462 | } |
| 3463 | return 0; | 3463 | return 0; |