diff options
Diffstat (limited to 'src/character.c')
| -rw-r--r-- | src/character.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/character.c b/src/character.c index 70c0637804b..7fc5d647ff5 100644 --- a/src/character.c +++ b/src/character.c | |||
| @@ -893,9 +893,9 @@ DEFUN ("string", Fstring, Sstring, 0, MANY, 0, | |||
| 893 | doc: /* | 893 | doc: /* |
| 894 | Concatenate all the argument characters and make the result a string. | 894 | Concatenate all the argument characters and make the result a string. |
| 895 | usage: (string &rest CHARACTERS) */) | 895 | usage: (string &rest CHARACTERS) */) |
| 896 | (size_t n, Lisp_Object *args) | 896 | (ptrdiff_t n, Lisp_Object *args) |
| 897 | { | 897 | { |
| 898 | size_t i; | 898 | ptrdiff_t i; |
| 899 | int c; | 899 | int c; |
| 900 | unsigned char *buf, *p; | 900 | unsigned char *buf, *p; |
| 901 | Lisp_Object str; | 901 | Lisp_Object str; |
| @@ -919,9 +919,9 @@ usage: (string &rest CHARACTERS) */) | |||
| 919 | DEFUN ("unibyte-string", Funibyte_string, Sunibyte_string, 0, MANY, 0, | 919 | DEFUN ("unibyte-string", Funibyte_string, Sunibyte_string, 0, MANY, 0, |
| 920 | doc: /* Concatenate all the argument bytes and make the result a unibyte string. | 920 | doc: /* Concatenate all the argument bytes and make the result a unibyte string. |
| 921 | usage: (unibyte-string &rest BYTES) */) | 921 | usage: (unibyte-string &rest BYTES) */) |
| 922 | (size_t n, Lisp_Object *args) | 922 | (ptrdiff_t n, Lisp_Object *args) |
| 923 | { | 923 | { |
| 924 | size_t i; | 924 | ptrdiff_t i; |
| 925 | int c; | 925 | int c; |
| 926 | unsigned char *buf, *p; | 926 | unsigned char *buf, *p; |
| 927 | Lisp_Object str; | 927 | Lisp_Object str; |