diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 3 | ||||
| -rw-r--r-- | src/xfns.c | 7 | ||||
| -rw-r--r-- | src/xterm.c | 2 |
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 @@ | |||
| 1 | 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu> | 1 | 2009-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 |
| 106 | extern void _XEditResCheckMessages (); | 103 | extern 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 |
| 118 | extern void _XEditResCheckMessages (); | 118 | extern void _XEditResCheckMessages (); |
| 119 | #endif /* not NO_EDITRES */ | 119 | #endif /* not NO_EDITRES */ |