diff options
| author | Andrea Corallo | 2022-01-25 22:05:05 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2022-01-25 22:05:05 +0100 |
| commit | 2d4d6f1a3fb292588f6506e4890117836ae541dd (patch) | |
| tree | 4a9f6aa4158809d57c34bb50239e1ca73f314c5b /src | |
| parent | f4ed3f39c979f101e523ff1073ffe364d5c44501 (diff) | |
| download | emacs-2d4d6f1a3fb292588f6506e4890117836ae541dd.tar.gz emacs-2d4d6f1a3fb292588f6506e4890117836ae541dd.zip | |
;* src/fns.c (concat_strings): Add missing space.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -848,7 +848,7 @@ concat_strings (ptrdiff_t nargs, Lisp_Object *args) | |||
| 848 | if (dest_multibyte && some_unibyte) | 848 | if (dest_multibyte && some_unibyte) |
| 849 | { | 849 | { |
| 850 | /* Non-ASCII characters in unibyte strings take two bytes when | 850 | /* Non-ASCII characters in unibyte strings take two bytes when |
| 851 | converted to multibyte -- count them and adjust the total. */ | 851 | converted to multibyte -- count them and adjust the total. */ |
| 852 | for (ptrdiff_t i = 0; i < nargs; i++) | 852 | for (ptrdiff_t i = 0; i < nargs; i++) |
| 853 | { | 853 | { |
| 854 | Lisp_Object arg = args[i]; | 854 | Lisp_Object arg = args[i]; |