aboutsummaryrefslogtreecommitdiffstats
path: root/src/composite.c
diff options
context:
space:
mode:
authorPo Lu2022-07-10 15:25:00 +0800
committerPo Lu2022-07-10 15:25:00 +0800
commit84473eb610e64e1b64d2ca73a092cc257995335f (patch)
treec0bc32a447478f199618509dc35d544ea982d6b8 /src/composite.c
parentd7120d97669f3a8640c487e76527c546970c8049 (diff)
downloademacs-84473eb610e64e1b64d2ca73a092cc257995335f.tar.gz
emacs-84473eb610e64e1b64d2ca73a092cc257995335f.zip
; * src/composite.c (Fcomposition_get_gstring): Fix compiler warnings.
Diffstat (limited to 'src/composite.c')
-rw-r--r--src/composite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/composite.c b/src/composite.c
index 5ad846e40b0..1596e996d6c 100644
--- a/src/composite.c
+++ b/src/composite.c
@@ -1897,7 +1897,7 @@ should be ignored. */)
1897 /* FIXME: Not clear why we need to do that: AFAICT the rest of 1897 /* FIXME: Not clear why we need to do that: AFAICT the rest of
1898 the code should work on an ASCII-only unibyte string just 1898 the code should work on an ASCII-only unibyte string just
1899 as well (bug#56347). */ 1899 as well (bug#56347). */
1900 string = make_multibyte_string (SDATA (string), chars, chars); 1900 string = make_multibyte_string (SSDATA (string), chars, chars);
1901 } 1901 }
1902 frombyte = string_char_to_byte (string, frompos); 1902 frombyte = string_char_to_byte (string, frompos);
1903 } 1903 }