aboutsummaryrefslogtreecommitdiffstats
path: root/src/xmenu.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-03-14 00:08:07 +0000
committerRichard M. Stallman <[email protected]>1994-03-14 00:08:07 +0000
commit7464b1311d2a4280aa1d6bb1d223824e54f4d3c1 (patch)
treedf8533cf4e2ab826ae810772e343318a971bfcfd /src/xmenu.c
parent6b4bde1b7c1c96f0296162a91ee8e2db766bac0a (diff)
(Fx_popup_dialog): Define only if USE_X_TOOLKIT.
Diffstat (limited to 'src/xmenu.c')
-rw-r--r--src/xmenu.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/xmenu.c b/src/xmenu.c
index 43811e751b..2effc7c38d 100644
--- a/src/xmenu.c
+++ b/src/xmenu.c
@@ -828,6 +828,8 @@ cached information about equivalent key sequences.")
return selection;
}
+#ifdef USE_X_TOOLKIT
+
DEFUN ("x-popup-dialog", Fx_popup_dialog, Sx_popup_dialog, 1, 2, 0,
"Pop up a dialog box and return user's selection.\n\
POSITION is a position specification. This is either a mouse button event\n\
@@ -954,6 +956,7 @@ cached information about equivalent key sequences.")
if (error_name) error (error_name);
return selection;
}
+#endif
#ifdef USE_X_TOOLKIT
@@ -2097,5 +2100,7 @@ syms_of_xmenu ()
popup_id_tick = (1<<16);
defsubr (&Sx_popup_menu);
+#ifdef USE_X_TOOLKIT
defsubr (&Sx_popup_dialog);
+#endif
}