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
Open sidebar
emacs
emacs
Commits
e4b68333
Commit
e4b68333
authored
Feb 08, 1996
by
Richard M. Stallman
Browse files
(min, max): Don't define if already defined.
parent
9c35997b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/xterm.c
src/xterm.c
+4
-0
No files found.
src/xterm.c
View file @
e4b68333
...
...
@@ -115,8 +115,12 @@ extern void _XEditResCheckMessages ();
#include <X11/Xlibint.h>
#endif
#ifndef min
#define min(a,b) ((a)<(b) ? (a) : (b))
#endif
#ifndef max
#define max(a,b) ((a)>(b) ? (a) : (b))
#endif
/* This is a chain of structures for all the X displays currently in use. */
struct x_display_info *x_display_list;
...
...
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