diff options
| author | Dmitry Antipov | 2014-06-17 17:41:14 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2014-06-17 17:41:14 +0400 |
| commit | 3e1fc7fbd10bdf5fc2d4e0c6fdb21c583d445602 (patch) | |
| tree | 7da5181d758e7bd8b719105d6725a8edb1c4c265 /src/lisp.h | |
| parent | 67343d1d9fef95c242a6d050187bb036e4bb82eb (diff) | |
| download | emacs-3e1fc7fbd10bdf5fc2d4e0c6fdb21c583d445602.tar.gz emacs-3e1fc7fbd10bdf5fc2d4e0c6fdb21c583d445602.zip | |
* lisp.h (STRING_COPYIN): Remove; unused.
* ccl.c (Fccl_execute_on_string):
* font.c (fon_intern_prop): Use make_specified_string.
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 |