]> git.eshelyaron.com Git - emacs.git/commitdiff
Include headers for pid_t.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 24 Apr 2006 13:10:19 +0000 (13:10 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 24 Apr 2006 13:10:19 +0000 (13:10 +0000)
src/ChangeLog
src/process.h

index 67d97f5f0459dd1ca240c13f270ddc86f9ce7663..2fd8cbdab94cf32ff89ecab4c5d6cd5409acfd87 100644 (file)
@@ -1,3 +1,7 @@
+2006-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * process.h: Include headers for pid_t.
+
 2006-04-24  Kim F. Storm  <storm@cua.dk>
 
        * xdisp.c (fill_stretch_glyph_string): Set s->nchars = 1 for code which
@@ -74,8 +78,8 @@
 
 2006-04-20  Lars Hansen  <larsh@soem.dk>
 
-       * 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.
 
 2006-04-13  Kenichi Handa  <handa@m17n.org>
 
        * 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.
 
        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\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>  (tiny change)
 
index c4b4281fedf63f20ba153e44cc4a08931ae61c17..b585515d6b185e890a2c49d9a4ad85f4478f22ed 100644 (file)
@@ -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 <sys/types.h>
+#endif
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
 
 /* This structure records information about a subprocess
    or network connection.