mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 11:50:51 -08:00
* xterm.c:
* xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
This commit is contained in:
parent
d1e4c4037e
commit
ee6bacd40d
3 changed files with 6 additions and 6 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -98,13 +98,10 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
|||
#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. */
|
||||
|
||||
|
|
|
|||
|
|
@ -113,7 +113,7 @@ extern void free_frame_menubar P_ ((struct frame *));
|
|||
#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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue