aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDan Nicolaescu2009-10-19 05:11:07 +0000
committerDan Nicolaescu2009-10-19 05:11:07 +0000
commitee6bacd40debc7ca7ec95c6f962ae533e8713a02 (patch)
treef437bd8e1cf36429182a86eb581be163acd75c46 /src
parentd1e4c4037e88f3256db19813805d03f8ad0291fa (diff)
downloademacs-ee6bacd40debc7ca7ec95c6f962ae533e8713a02.tar.gz
emacs-ee6bacd40debc7ca7ec95c6f962ae533e8713a02.zip
* xterm.c:
* xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/xfns.c7
-rw-r--r--src/xterm.c2
3 files changed, 6 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 51c01fbc199..6efec645f78 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12009-10-19 Dan Nicolaescu <dann@ics.uci.edu> 12009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
2 2
3 * xterm.c:
4 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
5
3 * alloc.c: Do not define struct catchtag. 6 * alloc.c: Do not define struct catchtag.
4 * eval.c: Move struct catchtag definition ... 7 * eval.c: Move struct catchtag definition ...
5 * lisp.h: ... here. 8 * lisp.h: ... here.
diff --git a/src/xfns.c b/src/xfns.c
index 4fc08925ebb..b9217617e30 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -98,13 +98,10 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
98#include <Xm/FileSB.h> 98#include <Xm/FileSB.h>
99#endif 99#endif
100 100
101/* Do the EDITRES protocol if running X11R5 101#if !defined(NO_EDITRES)
102 Exception: HP-UX (at least version A.09.05) has X11R5 without EditRes */
103
104#if (XtSpecificationRelease >= 5) && !defined(NO_EDITRES)
105#define HACK_EDITRES 102#define HACK_EDITRES
106extern void _XEditResCheckMessages (); 103extern void _XEditResCheckMessages ();
107#endif /* R5 + Athena */ 104#endif /* not defined NO_EDITRES */
108 105
109/* Unique id counter for widgets created by the Lucid Widget Library. */ 106/* Unique id counter for widgets created by the Lucid Widget Library. */
110 107
diff --git a/src/xterm.c b/src/xterm.c
index c77136eb64a..5a004873507 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -113,7 +113,7 @@ extern void free_frame_menubar P_ ((struct frame *));
113#endif 113#endif
114 114
115#ifdef USE_X_TOOLKIT 115#ifdef USE_X_TOOLKIT
116#if (XtSpecificationRelease >= 5) && !defined(NO_EDITRES) 116#if !defined(NO_EDITRES)
117#define HACK_EDITRES 117#define HACK_EDITRES
118extern void _XEditResCheckMessages (); 118extern void _XEditResCheckMessages ();
119#endif /* not NO_EDITRES */ 119#endif /* not NO_EDITRES */