diff options
| author | Eli Zaretskii | 2022-01-25 19:12:50 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2022-01-25 19:12:50 +0200 |
| commit | d25cb37694de446e6dd1095f489d5436ea9e20ae (patch) | |
| tree | dd460afd40e47380d8b1fc065ed1b943b3e106cc /src | |
| parent | 65172e61cc307e9c823a7b958f8327d7d52ec2d4 (diff) | |
| download | emacs-d25cb37694de446e6dd1095f489d5436ea9e20ae.tar.gz emacs-d25cb37694de446e6dd1095f489d5436ea9e20ae.zip | |
; * src/fns.c (concat_strings): Fix comment style.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -847,8 +847,8 @@ concat_strings (ptrdiff_t nargs, Lisp_Object *args) | |||
| 847 | 847 | ||
| 848 | if (dest_multibyte && some_unibyte) | 848 | if (dest_multibyte && some_unibyte) |
| 849 | { | 849 | { |
| 850 | // Non-ASCII chars 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]; |