Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
ee6bacd4
Commit
ee6bacd4
authored
Oct 19, 2009
by
Dan Nicolaescu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* xterm.c:
* xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
parent
d1e4c403
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
src/ChangeLog
src/ChangeLog
+3
-0
src/xfns.c
src/xfns.c
+2
-5
src/xterm.c
src/xterm.c
+1
-1
No files found.
src/ChangeLog
View file @
ee6bacd4
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.
...
...
src/xfns.c
View file @
ee6bacd4
...
...
@@ -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. */
...
...
src/xterm.c
View file @
ee6bacd4
...
...
@@ -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 */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment