diff options
| author | Po Lu | 2025-08-09 09:26:28 +0800 |
|---|---|---|
| committer | Po Lu | 2025-08-09 09:28:00 +0800 |
| commit | 533da29545a4acc63d736011da2aac586e457330 (patch) | |
| tree | 01881e1586291706c4c675fe6f6ceb8199f24afb /src/android.c | |
| parent | 42358d56f9a2bb6ebb9430d86f52e9117463a955 (diff) | |
| download | emacs-533da29545a4acc63d736011da2aac586e457330.tar.gz emacs-533da29545a4acc63d736011da2aac586e457330.zip | |
; * src/android.c (android_url_encode): Typo in comment.
Diffstat (limited to 'src/android.c')
| -rw-r--r-- | src/android.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/android.c b/src/android.c index 5c78dbd9171..345ddf8663d 100644 --- a/src/android.c +++ b/src/android.c | |||
| @@ -1142,10 +1142,10 @@ android_url_encode (const char *restrict string, size_t length, | |||
| 1142 | 1142 | ||
| 1143 | while (string < end) | 1143 | while (string < end) |
| 1144 | { | 1144 | { |
| 1145 | /* XXX: Android documentation claims that URIs is encoded | 1145 | /* XXX: Android documentation claims that a URI is to be encoded |
| 1146 | according to the ``Unicode'' scheme, but what this means in | 1146 | according to the ``Unicode'' scheme, but what this means in |
| 1147 | reality is that the URI is encoded in UTF-8, and then | 1147 | reality is that the URI is encoded in UTF-8, and then each of |
| 1148 | each of its bytes are encoded. */ | 1148 | the resulting bytes is separately URI-encoded. */ |
| 1149 | /* Find the length of the multibyte character at STRING. */ | 1149 | /* Find the length of the multibyte character at STRING. */ |
| 1150 | len = /* multibyte_length (string, end, true, true) */ 1; | 1150 | len = /* multibyte_length (string, end, true, true) */ 1; |
| 1151 | 1151 | ||