Mercurial > emacs
changeset 105671:f4161811f50e
* xterm.c:
* xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Mon, 19 Oct 2009 05:11:07 +0000 |
parents | 6f463ea7a91a |
children | 715324003204 |
files | src/ChangeLog src/xfns.c src/xterm.c |
diffstat | 3 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Mon Oct 19 05:04:22 2009 +0000 +++ b/src/ChangeLog Mon Oct 19 05:11:07 2009 +0000 @@ -1,5 +1,8 @@ 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu> + * xterm.c: + * xfns.c: Remove always true condition: XtSpecificationRelease >= 5. + * alloc.c: Do not define struct catchtag. * eval.c: Move struct catchtag definition ... * lisp.h: ... here.
--- a/src/xfns.c Mon Oct 19 05:04:22 2009 +0000 +++ b/src/xfns.c Mon Oct 19 05:11:07 2009 +0000 @@ -98,13 +98,10 @@ #include <Xm/FileSB.h> #endif -/* Do the EDITRES protocol if running X11R5 - Exception: HP-UX (at least version A.09.05) has X11R5 without EditRes */ - -#if (XtSpecificationRelease >= 5) && !defined(NO_EDITRES) +#if !defined(NO_EDITRES) #define HACK_EDITRES extern void _XEditResCheckMessages (); -#endif /* R5 + Athena */ +#endif /* not defined NO_EDITRES */ /* Unique id counter for widgets created by the Lucid Widget Library. */
--- a/src/xterm.c Mon Oct 19 05:04:22 2009 +0000 +++ b/src/xterm.c Mon Oct 19 05:11:07 2009 +0000 @@ -113,7 +113,7 @@ #endif #ifdef USE_X_TOOLKIT -#if (XtSpecificationRelease >= 5) && !defined(NO_EDITRES) +#if !defined(NO_EDITRES) #define HACK_EDITRES extern void _XEditResCheckMessages (); #endif /* not NO_EDITRES */