diff options
| author | Eli Zaretskii | 2023-08-19 14:29:25 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2023-08-19 14:29:25 +0300 |
| commit | a85f31c4a4d37f5d39a99e79cc32be172d49603f (patch) | |
| tree | 7772a39e4c080bff1a0a511c2988d0dae32d35cf /src/androidterm.c | |
| parent | dc8f09b3b0a3144e0117932736f59f79ff2a381b (diff) | |
| download | emacs-a85f31c4a4d37f5d39a99e79cc32be172d49603f.tar.gz emacs-a85f31c4a4d37f5d39a99e79cc32be172d49603f.zip | |
; * src/androidterm.c (android_text_to_string): Fix commentary.
Diffstat (limited to 'src/androidterm.c')
| -rw-r--r-- | src/androidterm.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/androidterm.c b/src/androidterm.c index f74463f88cd..473bea76ef5 100644 --- a/src/androidterm.c +++ b/src/androidterm.c | |||
| @@ -4869,17 +4869,17 @@ android_perform_conversion_query (void *data) | |||
| 4869 | context->success = true; | 4869 | context->success = true; |
| 4870 | } | 4870 | } |
| 4871 | 4871 | ||
| 4872 | /* Convert a string BUFFERS containing N characters in Emacs's | 4872 | /* Convert a string in BUFFER, containing N characters in Emacs's |
| 4873 | internal multibyte encoding to a Java string utilizing the | 4873 | internal multibyte encoding, to a Java string utilizing the |
| 4874 | specified JNI environment. | 4874 | specified JNI environment ENV. |
| 4875 | 4875 | ||
| 4876 | If N is equal to BYTES, then BUFFER is a single byte buffer. | 4876 | If N is equal to BYTES, then BUFFER holds unibyte or plain-ASCII |
| 4877 | Otherwise, BUFFER is a multibyte buffer. | 4877 | characters. Otherwise, BUFFER holds multibyte characters. |
| 4878 | 4878 | ||
| 4879 | Make sure N and BYTES are absolutely correct, or you are asking for | 4879 | Make sure N and BYTES are absolutely correct, or you are asking for |
| 4880 | trouble. | 4880 | trouble. |
| 4881 | 4881 | ||
| 4882 | Value is the string upon success, NULL otherwise. Any exceptions | 4882 | Value is a jstring upon success, NULL otherwise. Any exceptions |
| 4883 | generated are not cleared. */ | 4883 | generated are not cleared. */ |
| 4884 | 4884 | ||
| 4885 | static jstring | 4885 | static jstring |