aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-06-21 01:06:13 +0000
committerKarl Heuer1994-06-21 01:06:13 +0000
commit8d45a19e51d0aee0a0550ed1facaabaeb13954fe (patch)
tree45191c9e0a0c62e0ae3e923573cc2fba4aea5f0e /src
parentec5c4af4d2eee1648110d7d9bd8fd8b9620db5df (diff)
downloademacs-8d45a19e51d0aee0a0550ed1facaabaeb13954fe.tar.gz
emacs-8d45a19e51d0aee0a0550ed1facaabaeb13954fe.zip
Fix previous change: use Dimension, not short.
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 43398848084..1d513c806af 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -1935,7 +1935,7 @@ x_window (f, window_prompting, minibuffer_only)
1935 1935
1936 if (FRAME_EXTERNAL_MENU_BAR (f)) 1936 if (FRAME_EXTERNAL_MENU_BAR (f))
1937 { 1937 {
1938 short ibw; 1938 Dimension ibw;
1939 XtVaGetValues (pane_widget, XtNinternalBorderWidth, &ibw, NULL); 1939 XtVaGetValues (pane_widget, XtNinternalBorderWidth, &ibw, NULL);
1940 menubar_size += ibw; 1940 menubar_size += ibw;
1941 } 1941 }