aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Djärv2004-12-27 15:22:36 +0000
committerJan Djärv2004-12-27 15:22:36 +0000
commit4220b2a5cee38a736c2e5562bd6198d9e46847b4 (patch)
tree753ed32df1e5b671947c67e34883d053295340f4
parent639b8e4d14cfdc8a14ee514d2a6c7962ca38df43 (diff)
downloademacs-4220b2a5cee38a736c2e5562bd6198d9e46847b4.tar.gz
emacs-4220b2a5cee38a736c2e5562bd6198d9e46847b4.zip
* xlwmenu.c (xlwMenuActionsList): Install MenuGadgetEscape as an
action procedure for compatibility with Lesstif/Motif. * Makefile.in (mostlyclean): Don't remove *~ on clean.
-rw-r--r--lwlib/ChangeLog7
-rw-r--r--lwlib/Makefile.in2
-rw-r--r--lwlib/xlwmenu.c1
3 files changed, 9 insertions, 1 deletions
diff --git a/lwlib/ChangeLog b/lwlib/ChangeLog
index 3275c3b68b1..487c842f6f2 100644
--- a/lwlib/ChangeLog
+++ b/lwlib/ChangeLog
@@ -1,3 +1,10 @@
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
12004-12-26 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> 82004-12-26 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
2 9
3 * lwlib-Xaw.c: Put <KeyPress>Escape in dialogOverride so dialogs only 10 * lwlib-Xaw.c: Put <KeyPress>Escape in dialogOverride so dialogs only
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/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