Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a9ec7317
Commit
a9ec7317
authored
Apr 24, 2006
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include headers for pid_t.
parent
b841df8f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
8 deletions
+17
-8
src/ChangeLog
src/ChangeLog
+11
-8
src/process.h
src/process.h
+6
-0
No files found.
src/ChangeLog
View file @
a9ec7317
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>
2006-04-24 Kim F. Storm <storm@cua.dk>
* xdisp.c (fill_stretch_glyph_string): Set s->nchars = 1 for code which
* xdisp.c (fill_stretch_glyph_string): Set s->nchars = 1 for code which
...
@@ -74,8 +78,8 @@
...
@@ -74,8 +78,8 @@
2006-04-20 Lars Hansen <larsh@soem.dk>
2006-04-20 Lars Hansen <larsh@soem.dk>
* textprop.c (Fremove_list_of_text_properties):
Ensure
* textprop.c (Fremove_list_of_text_properties):
modify_region is called only when buffer is modified and that
Ensure
modify_region is called only when buffer is modified and that
signal_after_change is allways called in that case.
signal_after_change is allways called in that case.
* print.c (PRINTFINISH): Call signal_after_change.
* print.c (PRINTFINISH): Call signal_after_change.
...
@@ -93,8 +97,8 @@
...
@@ -93,8 +97,8 @@
* xmenu.c (restore_menu_items, save_menu_items): New fns.
* xmenu.c (restore_menu_items, save_menu_items): New fns.
(set_frame_menubar): Use save_menu_items. Save updated vector in
(set_frame_menubar): Use save_menu_items. Save updated vector in
the frame before unwinding it. Don't use unuse_menu_items.
Don't
the frame before unwinding it. Don't use unuse_menu_items.
use discard_menu_items.
Don't
use discard_menu_items.
(digest_single_submenu): Abort if an item is not in a pane.
(digest_single_submenu): Abort if an item is not in a pane.
(init_menu_items): Put the error check at the top.
(init_menu_items): Put the error check at the top.
...
@@ -166,8 +170,7 @@
...
@@ -166,8 +170,7 @@
2006-04-13 Kenichi Handa <handa@m17n.org>
2006-04-13 Kenichi Handa <handa@m17n.org>
* coding.c (setup_coding_system): Fix previous change.
* coding.c (setup_coding_system): Fix previous change.
(encode_coding): If eol_type is not yet decided, use
(encode_coding): If eol_type is not yet decided, use system_eol_type.
system_eol_type.
(shrink_encoding_region): If eol_type is not yet decided and
(shrink_encoding_region): If eol_type is not yet decided and
system_eol_type is not LF, don't shrink.
system_eol_type is not LF, don't shrink.
...
@@ -267,8 +270,8 @@
...
@@ -267,8 +270,8 @@
within ||. Add explicit braces to avoid ambiguous `else'.
within ||. Add explicit braces to avoid ambiguous `else'.
(dump_glyph_row): Remove label for `inverse_p' from legend.
(dump_glyph_row): Remove label for `inverse_p' from legend.
* xfaces.c (Finternal_merge_in_global_face, try_font_list):
Add
* xfaces.c (Finternal_merge_in_global_face, try_font_list):
explicit braces to avoid ambiguous `else'.
Add
explicit braces to avoid ambiguous `else'.
2006-04-11 Micha,Ak(Bl Cadilhac <michael.cadilhac@lrde.org> (tiny change)
2006-04-11 Micha,Ak(Bl Cadilhac <michael.cadilhac@lrde.org> (tiny change)
...
...
src/process.h
View file @
a9ec7317
...
@@ -19,6 +19,12 @@ along with GNU Emacs; see the file COPYING. If not, write to
...
@@ -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,
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA. */
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
/* This structure records information about a subprocess
or network connection.
or network connection.
...
...
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