Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
1891f348
Commit
1891f348
authored
Jun 17, 2004
by
Kim F. Storm
Browse files
Undo 2004-06-16T15:10:55Z!storm@cua.dk changes (committed accidentally)
except for the copyright year update.
parent
f4af98d8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
13 deletions
+1
-13
src/callproc.c
src/callproc.c
+1
-13
No files found.
src/callproc.c
View file @
1891f348
...
...
@@ -130,8 +130,6 @@ int synch_process_termsig;
this is exit code of synchronous subprocess. */
int
synch_process_retcode
;
extern
Lisp_Object
Qredisplay_dont_pause
;
extern
Lisp_Object
Vdoc_file_name
;
extern
Lisp_Object
Vfile_name_coding_system
,
Vdefault_file_name_coding_system
;
...
...
@@ -222,7 +220,7 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */)
int
fd
[
2
];
int
filefd
;
register
int
pid
;
char
buf
[
16384
*
4
];
char
buf
[
16384
];
char
*
bufptr
=
buf
;
int
bufsize
=
sizeof
buf
;
int
count
=
SPECPDL_INDEX
();
...
...
@@ -773,7 +771,6 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */)
if
(
this_read
==
0
)
{
// fprintf(stderr, "read 0, total=%d\n", total_read);
process_coding
.
mode
|=
CODING_MODE_LAST_BLOCK
;
break
;
}
...
...
@@ -781,8 +778,6 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */)
nread
+=
this_read
;
total_read
+=
this_read
;
// fprintf(stderr, "read %d+%d of %d, total=%d\n", nread, this_read, bufsize, total_read);
if
(
display_on_the_fly
)
break
;
}
...
...
@@ -835,8 +830,6 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */)
continue
;
}
// fprintf(stderr, "produced %d\n", process_coding.produced);
if
(
process_coding
.
produced
>
0
)
insert_1_both
(
decoding_buf
,
process_coding
.
produced_char
,
process_coding
.
produced
,
0
,
1
,
0
);
...
...
@@ -936,15 +929,10 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */)
if
(
!
NILP
(
display
)
&&
INTERACTIVE
)
{
extern
int
windows_or_buffers_changed
;
int
count
=
SPECPDL_INDEX
();
if
(
first
)
prepare_menu_bars
();
first
=
0
;
specbind
(
Qredisplay_dont_pause
,
Qt
);
redisplay_preserve_echo_area
(
1
);
unbind_to
(
count
,
Qnil
);
}
immediate_quit
=
1
;
QUIT
;
...
...
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