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
8646d999
Commit
8646d999
authored
Aug 06, 2010
by
Jan D
Browse files
* src/sysdep.c: Move include term.h last of includes (Bug#6812).
parent
33dd480f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
src/ChangeLog
src/ChangeLog
+4
-0
src/sysdep.c
src/sysdep.c
+6
-3
No files found.
src/ChangeLog
View file @
8646d999
2010-08-06 Jan Djärv <jan.h.d@swipnet.se>
* sysdep.c: Move include term.h last of includes (Bug#6812).
2010-08-06 Eli Zaretskii <eliz@gnu.org>
* dispnew.c (realloc_glyph_pool): Zero out newly allocated glyphs.
...
...
src/sysdep.c
View file @
8646d999
...
...
@@ -33,9 +33,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_TERM_H
#include <term.h>
#endif
#include "lisp.h"
/* Including stdlib.h isn't necessarily enough to get srandom
...
...
@@ -110,6 +107,12 @@ extern int quit_char;
#include "dispextern.h"
#include "process.h"
#include "cm.h"
/* for reset_sys_modes */
#ifdef HAVE_TERM_H
/* Include this last. If it is ncurses header file, it adds a lot of
defines that interfere with stuff in other headers. Someone responsible
for ncurses messed up bigtime. See bug#6812. */
#include <term.h>
#endif
/* For serial_configure and serial_open. */
extern
Lisp_Object
QCport
,
QCspeed
,
QCprocess
;
...
...
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