diff options
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/lisp.h b/src/lisp.h index e28a415152b..72ae5a1afda 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -1197,12 +1197,6 @@ STRING_SET_CHARS (Lisp_Object string, ptrdiff_t newsize) | |||
| 1197 | { | 1197 | { |
| 1198 | XSTRING (string)->size = newsize; | 1198 | XSTRING (string)->size = newsize; |
| 1199 | } | 1199 | } |
| 1200 | INLINE void | ||
| 1201 | STRING_COPYIN (Lisp_Object string, ptrdiff_t index, char const *new, | ||
| 1202 | ptrdiff_t count) | ||
| 1203 | { | ||
| 1204 | memcpy (SDATA (string) + index, new, count); | ||
| 1205 | } | ||
| 1206 | 1200 | ||
| 1207 | /* Header of vector-like objects. This documents the layout constraints on | 1201 | /* Header of vector-like objects. This documents the layout constraints on |
| 1208 | vectors and pseudovectors (objects of PVEC_xxx subtype). It also prevents | 1202 | vectors and pseudovectors (objects of PVEC_xxx subtype). It also prevents |