Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
03887dd3
Commit
03887dd3
authored
Apr 09, 1998
by
Karl Heuer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(min, max): Define as macros.
parent
f4fe72d5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
0 deletions
+15
-0
src/unexw32.c
src/unexw32.c
+5
-0
src/w32.c
src/w32.c
+5
-0
src/w32term.c
src/w32term.c
+5
-0
No files found.
src/unexw32.c
View file @
03887dd3
...
...
@@ -47,6 +47,11 @@ extern char my_endbss[];
#include "w32heap.h"
#undef min
#undef max
#define min(x, y) (((x) < (y)) ? (x) : (y))
#define max(x, y) (((x) > (y)) ? (x) : (y))
/* Basically, our "initialized" flag. */
BOOL
need_to_recreate_heap
=
FALSE
;
...
...
src/w32.c
View file @
03887dd3
...
...
@@ -79,6 +79,11 @@ Boston, MA 02111-1307, USA.
#include "ndir.h"
#include "w32heap.h"
#undef min
#undef max
#define min(x, y) (((x) < (y)) ? (x) : (y))
#define max(x, y) (((x) > (y)) ? (x) : (y))
extern
Lisp_Object
Vw32_downcase_file_names
;
extern
Lisp_Object
Vw32_generate_fake_inodes
;
extern
Lisp_Object
Vw32_get_true_file_attributes
;
...
...
src/w32term.c
View file @
03887dd3
...
...
@@ -49,6 +49,11 @@ Boston, MA 02111-1307, USA. */
#include "keyboard.h"
#include "intervals.h"
#undef min
#undef max
#define min(x, y) (((x) < (y)) ? (x) : (y))
#define max(x, y) (((x) > (y)) ? (x) : (y))
extern
void
free_frame_menubar
();
extern
Lisp_Object
Vwindow_system
;
...
...
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