diff options
| author | Miles Bader | 2007-05-30 14:44:47 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-05-30 14:44:47 +0000 |
| commit | 34c6724464237db4bfd5b3fa57e8b0f66a92f618 (patch) | |
| tree | bbfe4aea433c943f0f6a67b3e49ee31647e12d92 /src/frame.c | |
| parent | 30790a37efea5c6fed87ee0dd0d54c31ac9eea11 (diff) | |
| parent | 7a781a5480b9a1f55d28a76e1d1f89aaa2421f97 (diff) | |
| download | emacs-34c6724464237db4bfd5b3fa57e8b0f66a92f618.tar.gz emacs-34c6724464237db4bfd5b3fa57e8b0f66a92f618.zip | |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 771-780)
- Update from CVS
- Merge from emacs--rel--22
- Merge from emacs--rel--22, gnus--rel--5.10
- Fix tq.el edge case
* emacs--rel--22 (patch 26-32)
- Update from CVS
- lisp/vc-hooks.el (vc-find-root): Fix file attribute test
* gnus--rel--5.10 (patch 224-225)
- Merge from emacs--devo--0, emacs--rel--22
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-18
Diffstat (limited to 'src/frame.c')
| -rw-r--r-- | src/frame.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/frame.c b/src/frame.c index 5b8f9acaf0c..08379c7623c 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -1795,6 +1795,13 @@ before calling this function on it, like this. | |||
| 1795 | Fselect_frame (frame); | 1795 | Fselect_frame (frame); |
| 1796 | mouse_moveto (XINT (x), XINT (y)); | 1796 | mouse_moveto (XINT (x), XINT (y)); |
| 1797 | } | 1797 | } |
| 1798 | #else | ||
| 1799 | #ifdef HAVE_GPM | ||
| 1800 | { | ||
| 1801 | Fselect_frame (frame); | ||
| 1802 | term_mouse_moveto (XINT (x), XINT (y)); | ||
| 1803 | } | ||
| 1804 | #endif | ||
| 1798 | #endif | 1805 | #endif |
| 1799 | #endif | 1806 | #endif |
| 1800 | 1807 | ||