aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.c
diff options
context:
space:
mode:
authorTom Tromey2013-07-06 23:18:58 -0600
committerTom Tromey2013-07-06 23:18:58 -0600
commit6dacdad5fcb278e5a16b38bb81786aac9ca27be4 (patch)
treef5f331ea361ba0f99e0f9b638d183ad492a7da31 /src/term.c
parent0a6f2ff0c8ceb29703e76cddd46ea3f176dd873a (diff)
parent219afb88d9d484393418820d1c08dc93299110ec (diff)
downloademacs-6dacdad5fcb278e5a16b38bb81786aac9ca27be4.tar.gz
emacs-6dacdad5fcb278e5a16b38bb81786aac9ca27be4.zip
merge from trunk
this merges frmo trunk and fixes various build issues. this needed a few ugly tweaks. this hangs in "make check" now
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c
index 0bcef55947a..39d143564c6 100644
--- a/src/term.c
+++ b/src/term.c
@@ -2479,7 +2479,7 @@ term_mouse_moveto (int x, int y)
2479 const char *name; 2479 const char *name;
2480 int fd; 2480 int fd;
2481 name = (const char *) ttyname (0); 2481 name = (const char *) ttyname (0);
2482 fd = open (name, O_WRONLY); 2482 fd = emacs_open (name, O_WRONLY, 0);
2483 SOME_FUNCTION (x, y, fd); 2483 SOME_FUNCTION (x, y, fd);
2484 close (fd); 2484 close (fd);
2485 last_mouse_x = x; 2485 last_mouse_x = x;