Mercurial > emacs
comparison src/keyboard.c @ 90114:e4694597cbf4
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-21
Merge from emacs--cvs-trunk--0
Patches applied:
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0 (patch 129-149)
- Update from CVS
- Merge from gnus--rel--5.10
- (make-text-button): Default button type if not specified
- quick-install-emacs: Use mkdir --verbose only when requested
* miles@gnu.org--gnu-2005/gnus--rel--5.10 (patch 31-33)
- Merge from emacs--cvs-trunk--0
- Update from CVS
author | Miles Bader <miles@gnu.org> |
---|---|
date | Thu, 03 Mar 2005 10:35:22 +0000 |
parents | 7e3f621f1dd4 9d9eca6f4905 |
children | 29e773288013 |
comparison
equal
deleted
inserted
replaced
90113:a50413a4ba8b | 90114:e4694597cbf4 |
---|---|
1 /* Keyboard and mouse input; editor command loop. | 1 /* Keyboard and mouse input; editor command loop. |
2 Copyright (C) 1985,86,87,88,89,93,94,95,96,97,99,2000,01,02,03,04 | 2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, 1995, 1996, 1997, |
3 Free Software Foundation, Inc. | 3 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. |
4 | 4 |
5 This file is part of GNU Emacs. | 5 This file is part of GNU Emacs. |
6 | 6 |
7 GNU Emacs is free software; you can redistribute it and/or modify | 7 GNU Emacs is free software; you can redistribute it and/or modify |
8 it under the terms of the GNU General Public License as published by | 8 it under the terms of the GNU General Public License as published by |
10527 IMAGE (DX . DY) (WIDTH . HEIGHT)) | 10527 IMAGE (DX . DY) (WIDTH . HEIGHT)) |
10528 The `posn-' functions access elements of such lists. */) | 10528 The `posn-' functions access elements of such lists. */) |
10529 (x, y, frame_or_window, whole) | 10529 (x, y, frame_or_window, whole) |
10530 Lisp_Object x, y, frame_or_window, whole; | 10530 Lisp_Object x, y, frame_or_window, whole; |
10531 { | 10531 { |
10532 CHECK_NATNUM (x); | |
10533 CHECK_NATNUM (y); | |
10534 | |
10532 if (NILP (frame_or_window)) | 10535 if (NILP (frame_or_window)) |
10533 frame_or_window = selected_window; | 10536 frame_or_window = selected_window; |
10534 | 10537 |
10535 if (WINDOWP (frame_or_window)) | 10538 if (WINDOWP (frame_or_window)) |
10536 { | 10539 { |