mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 04:21:24 +00:00
emacsclient send_buffer size--
* lib-src/emacsclient.c (send_to_emacs_len): No need to add 1 to SEND_BUFFER_SIZE.
This commit is contained in:
parent
180953c8f6
commit
46c08d8574
1 changed files with 1 additions and 1 deletions
|
|
@ -821,7 +821,7 @@ send_to_emacs_len (HSOCKET s, const char *data, ptrdiff_t dlen)
|
|||
enum { SEND_BUFFER_SIZE = 4096 };
|
||||
|
||||
/* Buffer to accumulate data to send in TCP connections. */
|
||||
static char send_buffer[SEND_BUFFER_SIZE + 1];
|
||||
static char send_buffer[SEND_BUFFER_SIZE];
|
||||
|
||||
/* Fill pointer for the send buffer. */
|
||||
static int sblen;
|
||||
|
|
|
|||
Loading…
Reference in a new issue