aboutsummaryrefslogtreecommitdiffstats
path: root/src/dosfns.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1996-06-10 21:09:54 +0000
committerRichard M. Stallman <[email protected]>1996-06-10 21:09:54 +0000
commit7b71f5ebfe1c1c38a9c59cf3f62361e1998af7d5 (patch)
treed855ca3912339b3c88b41133e39e9375f8321ba7 /src/dosfns.c
parent541580aaf25d301de9d4bdd7c094c81550f245fc (diff)
(Fset_mouse_position): Remove the DOS-specific
definition (it's defined on `frame.c'). (syms_of_dosfns): Remove defsubr of `Fset_mouse_position'.
Diffstat (limited to 'src/dosfns.c')
-rw-r--r--src/dosfns.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/dosfns.c b/src/dosfns.c
index d66912f236..9fc6f2ab4f 100644
--- a/src/dosfns.c
+++ b/src/dosfns.c
@@ -165,17 +165,6 @@ Report whether a mouse is present.")
return Qnil;
}
-DEFUN ("set-mouse-position", Fset_mouse_position, Sset_mouse_position, 3, 3, 0,
- "Move the mouse pointer to the center of character cell (X,Y) in FRAME.\n\
-WARNING: If you use this under X windows,\n\
-you should call `unfocus-frame' afterwards.")
- (frame, x, y)
- Lisp_Object frame, x, y;
-{
- mouse_moveto (XINT (x), XINT (y));
- return Qnil;
-}
-
/* Function to translate colour names to integers. See lisp/term/pc-win.el
for its definition. */
@@ -333,8 +322,6 @@ syms_of_dosfns ()
defsubr (&Smsdos_mouse_disable);
#ifndef HAVE_X_WINDOWS
defsubr (&Smsdos_mouse_p);
- defsubr (&Sset_mouse_position);
-
Qmsdos_color_translate = intern ("msdos-color-translate");
staticpro (&Qmsdos_color_translate);
#endif