diff options
author | Jan Djärv <jan.h.d@swipnet.se> | 2004-12-26 16:02:26 +0000 |
---|---|---|
committer | Jan Djärv <jan.h.d@swipnet.se> | 2004-12-26 16:02:26 +0000 |
commit | 4e6e2184d82de441fca1d1daf9b51a518c7ff265 (patch) | |
tree | a52c5488c232f00acfc9392645b09c9474038a36 /lwlib/lwlib-Xaw.c | |
parent | 133c01167ee97820887336e20f4f516202e02ccf (diff) | |
download | emacs-4e6e2184d82de441fca1d1daf9b51a518c7ff265.tar.gz |
* lwlib-Xaw.c: Put <KeyPress>Escape in dialogOverride so dialogs only
pops down on Escape, not any keypress.
Diffstat (limited to 'lwlib/lwlib-Xaw.c')
-rw-r--r-- | lwlib/lwlib-Xaw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lwlib/lwlib-Xaw.c b/lwlib/lwlib-Xaw.c index 867193c7cc8..b0f3f6abce8 100644 --- a/lwlib/lwlib-Xaw.c +++ b/lwlib/lwlib-Xaw.c @@ -279,7 +279,7 @@ static char overrideTrans[] = "<Message>WM_PROTOCOLS: lwlib_delete_dialog()"; /* Dialogs pop down on any key press */ static char dialogOverride[] = - "<KeyPress>: lwlib_delete_dialog()"; + "<KeyPress>Escape: lwlib_delete_dialog()"; static void wm_delete_window(); static XtActionsRec xaw_actions [] = { {"lwlib_delete_dialog", wm_delete_window} |