diff options
| author | Dave Love | 2002-05-17 17:10:07 +0000 |
|---|---|---|
| committer | Dave Love | 2002-05-17 17:10:07 +0000 |
| commit | e76af44234e28d849d6ce4125b9ccf60578ac8e9 (patch) | |
| tree | 9d136d1b95b73127443b226e842bd6d95777a667 /src | |
| parent | f55d2710b3a2b63af2d90c6f14b532a3d4ce3999 (diff) | |
| download | emacs-e76af44234e28d849d6ce4125b9ccf60578ac8e9.tar.gz emacs-e76af44234e28d849d6ce4125b9ccf60578ac8e9.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 33 | ||||
| -rw-r--r-- | src/process.c | 7 |
2 files changed, 40 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 5142e9d25bd..1d8ec0bd8c6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,36 @@ | |||
| 1 | 2002-05-17 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * xterm.c (XSetIMValues): Declare. | ||
| 4 | |||
| 5 | * process.c: Conditionally include sys/wait.h, pty.h. | ||
| 6 | |||
| 7 | * print.c (print_object): Fix print format for 64-bit | ||
| 8 | systems. | ||
| 9 | |||
| 10 | * keyboard.c (modify_event_symbol): Fix print format for 64-bit | ||
| 11 | systems. | ||
| 12 | |||
| 13 | * buffer.c (emacs_strerror): Declare. | ||
| 14 | (MMAP_ALLOCATED_P, mmap_enlarge, syms_of_buffer): Import changes | ||
| 15 | from trunk. | ||
| 16 | |||
| 17 | * fontset.c (Fclear_face_cache): Declare. | ||
| 18 | (accumulate_font_info): Commented-out (unused). | ||
| 19 | (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused | ||
| 20 | variables. | ||
| 21 | |||
| 22 | * character.h (string_escape_byte8): Declare. | ||
| 23 | |||
| 24 | * charset.c (load_charset_map, load_charset_map_from_file): Remove | ||
| 25 | unused vars. | ||
| 26 | (Fdefine_charset_internal, Fsplit_char, syms_of_charset) | ||
| 27 | (Fmap_charset_chars): Doc fix. | ||
| 28 | |||
| 29 | * coding.c (Vchar_coding_system_table, Qchar_coding_system): | ||
| 30 | Removed. | ||
| 31 | (Fset_coding_system_priority, Fset_coding_system_priority) | ||
| 32 | (Fdefine_coding_system_internal): Doc fix. | ||
| 33 | |||
| 1 | 2002-05-16 Dave Love <fx@gnu.org> | 34 | 2002-05-16 Dave Love <fx@gnu.org> |
| 2 | 35 | ||
| 3 | * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics. | 36 | * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics. |
diff --git a/src/process.c b/src/process.c index 4b009e2b076..5ca96d83e9c 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -92,6 +92,10 @@ Boston, MA 02111-1307, USA. */ | |||
| 92 | #include <sys/sysmacros.h> /* for "minor" */ | 92 | #include <sys/sysmacros.h> /* for "minor" */ |
| 93 | #endif /* not IRIS */ | 93 | #endif /* not IRIS */ |
| 94 | 94 | ||
| 95 | #ifdef HAVE_SYS_WAIT | ||
| 96 | #include <sys/wait.h> | ||
| 97 | #endif | ||
| 98 | |||
| 95 | #include "systime.h" | 99 | #include "systime.h" |
| 96 | #include "systty.h" | 100 | #include "systty.h" |
| 97 | 101 | ||
| @@ -234,6 +238,9 @@ static int pty_max_bytes; | |||
| 234 | extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system; | 238 | extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system; |
| 235 | 239 | ||
| 236 | #ifdef HAVE_PTYS | 240 | #ifdef HAVE_PTYS |
| 241 | #ifdef HAVE_PTY_H | ||
| 242 | #include <pty.h> | ||
| 243 | #endif | ||
| 237 | /* The file name of the pty opened by allocate_pty. */ | 244 | /* The file name of the pty opened by allocate_pty. */ |
| 238 | 245 | ||
| 239 | static char pty_name[24]; | 246 | static char pty_name[24]; |