diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-09-21 02:25:56 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-09-21 02:25:56 +0000 |
commit | b9a2278905e54eb695e03cedf1d898028d35791b (patch) | |
tree | 774129da0c8ba00097ff04c63d5cc9c77ca336f6 /src | |
parent | 92196cdc733a465101b47f9ce0de12be5c9a70ef (diff) | |
download | emacs-b9a2278905e54eb695e03cedf1d898028d35791b.tar.gz |
(Fsun_menu_internal): Use new WINDOW_LEFT_MARGIN macro.
Diffstat (limited to 'src')
-rw-r--r-- | src/sunfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sunfns.c b/src/sunfns.c index e625a471fed..6bfa479321d 100644 --- a/src/sunfns.c +++ b/src/sunfns.c @@ -453,7 +453,7 @@ as a menu label.") CHECK_GFX (Qnil); - xpos = CtoSX (XWINDOW(window)->left + XINT(X_Position)); + xpos = CtoSX (WINDOW_LEFT_MARGIN (XWINDOW (window)) + XINT(X_Position)); ypos = CtoSY (XWINDOW(window)->top + XINT(Y_Position)); #ifdef Menu_Base_Kludge {static Lisp_Object symbol[2]; |