aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-16 06:15:42 +0000
committerRichard M. Stallman1994-04-16 06:15:42 +0000
commitc7c7076192b8dc56254af151b97a98fbd3c692c7 (patch)
tree77a76974814ee9a1de99f86b2574cba856a4b49f /src
parentc0bac6a3c844f9a4090e0b0df5156ed73dbae3c5 (diff)
downloademacs-c7c7076192b8dc56254af151b97a98fbd3c692c7.tar.gz
emacs-c7c7076192b8dc56254af151b97a98fbd3c692c7.zip
(Fset_frame_position): Pass new arg to x_set_offset.
Diffstat (limited to 'src')
-rw-r--r--src/frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index 6e4cd1b50e0..da35c013737 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -1546,7 +1546,7 @@ the rightmost or bottommost possible position (that stays within the screen).")
1546 /* I think this should be done with a hook. */ 1546 /* I think this should be done with a hook. */
1547#ifdef HAVE_X_WINDOWS 1547#ifdef HAVE_X_WINDOWS
1548 if (FRAME_X_P (f)) 1548 if (FRAME_X_P (f))
1549 x_set_offset (f, XINT (xoffset), XINT (yoffset)); 1549 x_set_offset (f, XINT (xoffset), XINT (yoffset), 1);
1550#endif 1550#endif
1551 1551
1552 return Qt; 1552 return Qt;