aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2006-04-24 13:10:19 +0000
committerStefan Monnier2006-04-24 13:10:19 +0000
commita9ec73170e2ed5316e72875666ab01fd1f1e9043 (patch)
tree2da7cad6abfd69372e7402b196cf247195da76b3 /src
parentb841df8f0b91138477e33bb74b6244a8cf97a26a (diff)
downloademacs-a9ec73170e2ed5316e72875666ab01fd1f1e9043.tar.gz
emacs-a9ec73170e2ed5316e72875666ab01fd1f1e9043.zip
Include headers for pid_t.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog19
-rw-r--r--src/process.h6
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 @@
12006-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * process.h: Include headers for pid_t.
4
12006-04-24 Kim F. Storm <storm@cua.dk> 52006-04-24 Kim F. Storm <storm@cua.dk>
2 6
3 * xdisp.c (fill_stretch_glyph_string): Set s->nchars = 1 for code which 7 * xdisp.c (fill_stretch_glyph_string): Set s->nchars = 1 for code which
@@ -74,8 +78,8 @@
74 78
752006-04-20 Lars Hansen <larsh@soem.dk> 792006-04-20 Lars Hansen <larsh@soem.dk>
76 80
77 * textprop.c (Fremove_list_of_text_properties): Ensure 81 * textprop.c (Fremove_list_of_text_properties):
78 modify_region is called only when buffer is modified and that 82 Ensure modify_region is called only when buffer is modified and that
79 signal_after_change is allways called in that case. 83 signal_after_change is allways called in that case.
80 84
81 * print.c (PRINTFINISH): Call signal_after_change. 85 * print.c (PRINTFINISH): Call signal_after_change.
@@ -93,8 +97,8 @@
93 97
94 * xmenu.c (restore_menu_items, save_menu_items): New fns. 98 * xmenu.c (restore_menu_items, save_menu_items): New fns.
95 (set_frame_menubar): Use save_menu_items. Save updated vector in 99 (set_frame_menubar): Use save_menu_items. Save updated vector in
96 the frame before unwinding it. Don't use unuse_menu_items. Don't 100 the frame before unwinding it. Don't use unuse_menu_items.
97 use discard_menu_items. 101 Don't use discard_menu_items.
98 (digest_single_submenu): Abort if an item is not in a pane. 102 (digest_single_submenu): Abort if an item is not in a pane.
99 (init_menu_items): Put the error check at the top. 103 (init_menu_items): Put the error check at the top.
100 104
@@ -166,8 +170,7 @@
1662006-04-13 Kenichi Handa <handa@m17n.org> 1702006-04-13 Kenichi Handa <handa@m17n.org>
167 171
168 * coding.c (setup_coding_system): Fix previous change. 172 * coding.c (setup_coding_system): Fix previous change.
169 (encode_coding): If eol_type is not yet decided, use 173 (encode_coding): If eol_type is not yet decided, use system_eol_type.
170 system_eol_type.
171 (shrink_encoding_region): If eol_type is not yet decided and 174 (shrink_encoding_region): If eol_type is not yet decided and
172 system_eol_type is not LF, don't shrink. 175 system_eol_type is not LF, don't shrink.
173 176
@@ -267,8 +270,8 @@
267 within ||. Add explicit braces to avoid ambiguous `else'. 270 within ||. Add explicit braces to avoid ambiguous `else'.
268 (dump_glyph_row): Remove label for `inverse_p' from legend. 271 (dump_glyph_row): Remove label for `inverse_p' from legend.
269 272
270 * xfaces.c (Finternal_merge_in_global_face, try_font_list): Add 273 * xfaces.c (Finternal_merge_in_global_face, try_font_list):
271 explicit braces to avoid ambiguous `else'. 274 Add explicit braces to avoid ambiguous `else'.
272 275
2732006-04-11 Micha,Ak(Bl Cadilhac <michael.cadilhac@lrde.org> (tiny change) 2762006-04-11 Micha,Ak(Bl Cadilhac <michael.cadilhac@lrde.org> (tiny change)
274 277
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
19the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 19the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20Boston, MA 02110-1301, USA. */ 20Boston, MA 02110-1301, USA. */
21 21
22#ifdef HAVE_SYS_TYPES_H
23#include <sys/types.h>
24#endif
25#ifdef HAVE_UNISTD_H
26#include <unistd.h>
27#endif
22 28
23/* This structure records information about a subprocess 29/* This structure records information about a subprocess
24 or network connection. 30 or network connection.