Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
f523e0c3
Commit
f523e0c3
authored
Feb 25, 2006
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fmake_network_process): Init the process's mark.
parent
19cd88cc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/process.c
src/process.c
+7
-1
No files found.
src/ChangeLog
View file @
f523e0c3
2006-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
* process.c (Fmake_network_process): Init the process's mark.
2006-02-25 Kim F. Storm <storm@cua.dk>
* buffer.c (modify_overlay): Force redisplay if we modify an
...
...
src/process.c
View file @
f523e0c3
...
...
@@ -1582,7 +1582,7 @@ usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
#endif
/* Make the process marker point into the process buffer (if any). */
if (
!NIL
P (buffer))
if (
BUFFER
P (buffer))
set_marker_both (XPROCESS (proc)->mark, buffer,
BUF_ZV (XBUFFER (buffer)),
BUF_ZV_BYTE (XBUFFER (buffer)));
...
...
@@ -3355,6 +3355,12 @@ usage: (make-network-process &rest ARGS) */)
if (is_server && socktype == SOCK_STREAM)
p->status = Qlisten;
/* Make the process marker point into the process buffer (if any). */
if (BUFFERP (buffer))
set_marker_both (p->mark, buffer,
BUF_ZV (XBUFFER (buffer)),
BUF_ZV_BYTE (XBUFFER (buffer)));
#ifdef NON_BLOCKING_CONNECT
if (is_non_blocking_client)
{
...
...
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