diff options
| author | Andrea Corallo | 2022-01-25 17:52:43 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2022-01-25 17:52:43 +0100 |
| commit | 65172e61cc307e9c823a7b958f8327d7d52ec2d4 (patch) | |
| tree | 4e5c88d28c57f51f2a265eb7b60c24fe38438587 /src | |
| parent | dfaf8bec4e47eac2282e76d23e2ecc03c062ec39 (diff) | |
| download | emacs-65172e61cc307e9c823a7b958f8327d7d52ec2d4.tar.gz emacs-65172e61cc307e9c823a7b958f8327d7d52ec2d4.zip | |
* src/fns.c (concat_strings): Clean-up unused variable.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 2 |
1 files changed, 0 insertions, 2 deletions
| @@ -923,8 +923,6 @@ concat_strings (ptrdiff_t nargs, Lisp_Object *args) | |||
| 923 | for (ptrdiff_t j = 0; j < len; j++) | 923 | for (ptrdiff_t j = 0; j < len; j++) |
| 924 | { | 924 | { |
| 925 | int c = XFIXNAT (AREF (arg, j)); | 925 | int c = XFIXNAT (AREF (arg, j)); |
| 926 | ptrdiff_t arg_len_byte = CHAR_BYTES (c); | ||
| 927 | |||
| 928 | if (dest_multibyte) | 926 | if (dest_multibyte) |
| 929 | toindex_byte += CHAR_STRING (c, SDATA (result) + toindex_byte); | 927 | toindex_byte += CHAR_STRING (c, SDATA (result) + toindex_byte); |
| 930 | else | 928 | else |