summaryrefslogtreecommitdiff
path: root/zwgc/xcut.c
diff options
context:
space:
mode:
authorGravatar John Kohl <jtkohl@mit.edu>1989-11-08 09:37:57 +0000
committerGravatar John Kohl <jtkohl@mit.edu>1989-11-08 09:37:57 +0000
commita25eb4ce1a185c50eb2437f2099fabf51ffded2b (patch)
tree7f9347184544b6ede00e3855c5627511c69615b7 /zwgc/xcut.c
parent816c3bb844aaf0d670fb3c94ddec863e93ae4e02 (diff)
missing extern declaration in REVSTACK state
Diffstat (limited to 'zwgc/xcut.c')
-rw-r--r--zwgc/xcut.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/zwgc/xcut.c b/zwgc/xcut.c
index d600691..184e4b4 100644
--- a/zwgc/xcut.c
+++ b/zwgc/xcut.c
@@ -13,7 +13,7 @@
*/
#if (!defined(lint) && !defined(SABER))
-static char rcsid_xcut_c[] = "$Header$";
+static char rcsid_xcut_c[] = "$Id$";
#endif
#include <zephyr/mit-copyright.h>
@@ -209,6 +209,9 @@ void xcut(dpy,event,desc_context)
case ButtonRelease:
if (w == current_window_in && !((event->xbutton.state)&ShiftMask)) {
+#ifdef REVSTACK
+ extern int reverse_stack;
+#endif /* REVSTACK */
if (w == selecting_in) selecting_in = 0;
XDeleteContext(dpy, w, desc_context);
XDestroyWindow(dpy, w);