# HG changeset patch # User Karl Heuer # Date 929659943 0 # Node ID 4daf369d28c0b0ef760675da5c4b8b9b10d8213b # Parent 84d705e026b4e02bc82581ee9c8fb79d2e742e85 (send_process): Delete unsafe/redundant assignment. diff -r 84d705e026b4 -r 4daf369d28c0 src/process.c --- a/src/process.c Thu Jun 17 12:12:47 1999 +0000 +++ b/src/process.c Thu Jun 17 22:52:23 1999 +0000 @@ -3212,11 +3212,11 @@ /* Remember the offset of data because a string or a buffer may be relocated. Setting OFFSET to -1 means we don't have to - care relocation. */ + care about relocation. */ offset = (BUFFERP (object) ? BUF_PTR_BYTE_POS (XBUFFER (object), buf) : (STRINGP (object) - ? offset = buf - XSTRING (object)->data + ? buf - XSTRING (object)->data : -1)); if (carryover > 0) @@ -3229,7 +3229,7 @@ buf = BUF_BYTE_ADDRESS (XBUFFER (object), offset); else if (STRINGP (object)) buf = offset + XSTRING (object)->data; - /* Now we don't have to care relocation. */ + /* Now we don't have to care about relocation. */ offset = -1; } bcopy ((XSTRING (XPROCESS (proc)->encoding_buf)->data