From a9ec73170e2ed5316e72875666ab01fd1f1e9043 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 24 Apr 2006 13:10:19 +0000 Subject: [PATCH] Include headers for pid_t. --- src/ChangeLog | 19 +++++++++++-------- src/process.h | 6 ++++++ 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 67d97f5f045..2fd8cbdab94 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2006-04-24 Stefan Monnier + + * process.h: Include headers for pid_t. + 2006-04-24 Kim F. Storm * xdisp.c (fill_stretch_glyph_string): Set s->nchars = 1 for code which @@ -74,8 +78,8 @@ 2006-04-20 Lars Hansen - * textprop.c (Fremove_list_of_text_properties): Ensure - modify_region is called only when buffer is modified and that + * textprop.c (Fremove_list_of_text_properties): + Ensure modify_region is called only when buffer is modified and that signal_after_change is allways called in that case. * print.c (PRINTFINISH): Call signal_after_change. @@ -93,8 +97,8 @@ * xmenu.c (restore_menu_items, save_menu_items): New fns. (set_frame_menubar): Use save_menu_items. Save updated vector in - the frame before unwinding it. Don't use unuse_menu_items. Don't - use discard_menu_items. + the frame before unwinding it. Don't use unuse_menu_items. + Don't use discard_menu_items. (digest_single_submenu): Abort if an item is not in a pane. (init_menu_items): Put the error check at the top. @@ -166,8 +170,7 @@ 2006-04-13 Kenichi Handa * coding.c (setup_coding_system): Fix previous change. - (encode_coding): If eol_type is not yet decided, use - system_eol_type. + (encode_coding): If eol_type is not yet decided, use system_eol_type. (shrink_encoding_region): If eol_type is not yet decided and system_eol_type is not LF, don't shrink. @@ -267,8 +270,8 @@ within ||. Add explicit braces to avoid ambiguous `else'. (dump_glyph_row): Remove label for `inverse_p' from legend. - * xfaces.c (Finternal_merge_in_global_face, try_font_list): Add - explicit braces to avoid ambiguous `else'. + * xfaces.c (Finternal_merge_in_global_face, try_font_list): + Add explicit braces to avoid ambiguous `else'. 2006-04-11 Micha,Ak(Bl Cadilhac (tiny change) diff --git a/src/process.h b/src/process.h index c4b4281fedf..b585515d6b1 100644 --- a/src/process.h +++ b/src/process.h @@ -19,6 +19,12 @@ along with GNU Emacs; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ +#ifdef HAVE_SYS_TYPES_H +#include +#endif +#ifdef HAVE_UNISTD_H +#include +#endif /* This structure records information about a subprocess or network connection. -- 2.39.5