aboutsummaryrefslogtreecommitdiffstats
path: root/lwlib
diff options
context:
space:
mode:
authorKaroly Lorentey2005-01-06 15:00:09 +0000
committerKaroly Lorentey2005-01-06 15:00:09 +0000
commit0feecea9fb7079a2c1fbfee32a992449a22cf478 (patch)
tree0826d68e3dc2ce370c7bd4dae7db3cffc3568321 /lwlib
parent17d51b68fb4e7da4f18eff72c589b7ffc4f9c22c (diff)
parent1a63439b34c3455a317feda5c271dfdb7af0296b (diff)
downloademacs-0feecea9fb7079a2c1fbfee32a992449a22cf478.tar.gz
emacs-0feecea9fb7079a2c1fbfee32a992449a22cf478.zip
Merged in changes from CVS trunk.
Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-747 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-748 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-749 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-750 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-751 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-752 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-78 Merge from emacs--cvs-trunk--0 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-79 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-80 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-278
Diffstat (limited to 'lwlib')
-rw-r--r--lwlib/ChangeLog12
-rw-r--r--lwlib/Makefile.in2
-rw-r--r--lwlib/lwlib-Xaw.c2
-rw-r--r--lwlib/xlwmenu.c1
4 files changed, 15 insertions, 2 deletions
diff --git a/lwlib/ChangeLog b/lwlib/ChangeLog
index eb2dd13432a..487c842f6f2 100644
--- a/lwlib/ChangeLog
+++ b/lwlib/ChangeLog
@@ -1,3 +1,15 @@
12004-12-27 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
2
3 * xlwmenu.c (xlwMenuActionsList): Install MenuGadgetEscape as an
4 action procedure for compatibility with Lesstif/Motif.
5
6 * Makefile.in (mostlyclean): Don't remove *~ on clean.
7
82004-12-26 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
9
10 * lwlib-Xaw.c: Put <KeyPress>Escape in dialogOverride so dialogs only
11 pops down on Escape, not any keypress.
12
12004-11-01 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> 132004-11-01 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
2 14
3 * xlwmenu.c (find_first_selectable, find_next_selectable) 15 * xlwmenu.c (find_first_selectable, find_next_selectable)
diff --git a/lwlib/Makefile.in b/lwlib/Makefile.in
index 11368819f4a..dd2bb6537e9 100644
--- a/lwlib/Makefile.in
+++ b/lwlib/Makefile.in
@@ -57,7 +57,7 @@ lwlib-Xm.o: lwlib-Xm.c lwlib-Xm.h lwlib.h lwlib-int.h lwlib-utils.h
57xlwmenu.o: xlwmenu.c xlwmenu.h lwlib.h xlwmenuP.h 57xlwmenu.o: xlwmenu.c xlwmenu.h lwlib.h xlwmenuP.h
58 58
59mostlyclean: 59mostlyclean:
60 $(RM) *.o core errs ,* *~ *.a .emacs_* make.log MakeOut \#* 60 $(RM) *.o core errs ,* *.a .emacs_* make.log MakeOut \#*
61 61
62clean: mostlyclean 62clean: mostlyclean
63distclean: clean 63distclean: clean
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[] =
279 "<Message>WM_PROTOCOLS: lwlib_delete_dialog()"; 279 "<Message>WM_PROTOCOLS: lwlib_delete_dialog()";
280/* Dialogs pop down on any key press */ 280/* Dialogs pop down on any key press */
281static char dialogOverride[] = 281static char dialogOverride[] =
282 "<KeyPress>: lwlib_delete_dialog()"; 282 "<KeyPress>Escape: lwlib_delete_dialog()";
283static void wm_delete_window(); 283static void wm_delete_window();
284static XtActionsRec xaw_actions [] = { 284static XtActionsRec xaw_actions [] = {
285 {"lwlib_delete_dialog", wm_delete_window} 285 {"lwlib_delete_dialog", wm_delete_window}
diff --git a/lwlib/xlwmenu.c b/lwlib/xlwmenu.c
index d4eeeaa3eb4..43ae8ee2ea0 100644
--- a/lwlib/xlwmenu.c
+++ b/lwlib/xlwmenu.c
@@ -211,6 +211,7 @@ xlwMenuActionsList [] =
211 {"right", Right}, 211 {"right", Right},
212 {"select", Select}, 212 {"select", Select},
213 {"key", Key}, 213 {"key", Key},
214 {"MenuGadgetEscape", Key}, /* Compatibility with Lesstif/Motif. */
214 {"nothing", Nothing}, 215 {"nothing", Nothing},
215}; 216};
216 217