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
d72534ba
Commit
d72534ba
authored
Apr 08, 1994
by
Karl Heuer
Browse files
(read_process_output): If buffer changes, record that fact.
parent
026b8c1e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
src/process.c
src/process.c
+5
-0
No files found.
src/process.c
View file @
d72534ba
...
...
@@ -2134,8 +2134,10 @@ read_process_output (proc, channel)
it up. */
int
count
=
specpdl_ptr
-
specpdl
;
Lisp_Object
odeactivate
;
Lisp_Object
obuffer
;
odeactivate
=
Vdeactivate_mark
;
obuffer
=
Fcurrent_buffer
();
specbind
(
Qinhibit_quit
,
Qt
);
call2
(
outstream
,
proc
,
make_string
(
chars
,
nchars
));
...
...
@@ -2143,6 +2145,9 @@ read_process_output (proc, channel)
/* Handling the process output should not deactivate the mark. */
Vdeactivate_mark
=
odeactivate
;
if
(
!
EQ
(
Fcurrent_buffer
(),
obuffer
))
record_asynch_buffer_change
();
#ifdef VMS
start_vms_process_read
(
vs
);
#endif
...
...
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