diff options
| author | Eli Zaretskii | 2023-12-16 11:13:33 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2023-12-16 11:13:33 +0200 |
| commit | 8b3fc9833845eb0f197b27e8fe999cfeed8dc48c (patch) | |
| tree | 0b85a1d440775606bbc36b6bea8a5906225683b7 /src | |
| parent | 100a2ab24605b973172b39d0b21adcdcd9907ba9 (diff) | |
| download | emacs-8b3fc9833845eb0f197b27e8fe999cfeed8dc48c.tar.gz emacs-8b3fc9833845eb0f197b27e8fe999cfeed8dc48c.zip | |
; * src/androidfns.c (syms_of_androidfns) <android-os-language>: Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/androidfns.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/androidfns.c b/src/androidfns.c index e1fd772df9c..14561afe29a 100644 --- a/src/androidfns.c +++ b/src/androidfns.c | |||
| @@ -3500,23 +3500,22 @@ bell being rung. */); | |||
| 3500 | android_keyboard_bell_duration = 50; | 3500 | android_keyboard_bell_duration = 50; |
| 3501 | 3501 | ||
| 3502 | DEFVAR_LISP ("android-os-language", Vandroid_os_language, | 3502 | DEFVAR_LISP ("android-os-language", Vandroid_os_language, |
| 3503 | doc: /* List representing the system language configured. | 3503 | doc: /* A list representing the configured system language on Android. |
| 3504 | This list incorporates four elements LANGUAGE, COUNTRY, SCRIPT | 3504 | This list has four elements: LANGUAGE, COUNTRY, SCRIPT and VARIANT, where: |
| 3505 | and VARIANT, of which: | ||
| 3506 | 3505 | ||
| 3507 | LANGUAGE and COUNTRY are ISO language and country codes identical to | 3506 | LANGUAGE and COUNTRY are ISO language and country codes identical to |
| 3508 | those stored within POSIX locales. | 3507 | those found in POSIX locale specifications. |
| 3509 | 3508 | ||
| 3510 | SCRIPT is an ISO 15924 script tag, representing the script used | 3509 | SCRIPT is an ISO 15924 script tag, representing the script used |
| 3511 | if available, or if required to disambiguate between distinct | 3510 | if available, or if required to disambiguate between distinct |
| 3512 | writing systems for the same combination of language and country. | 3511 | writing systems for the same combination of language and country. |
| 3513 | 3512 | ||
| 3514 | VARIANT is an arbitrary string representing the variant of the | 3513 | VARIANT is an arbitrary string representing the variant of the |
| 3515 | LANGUAGE or SCRIPT represented. | 3514 | LANGUAGE or SCRIPT. |
| 3516 | 3515 | ||
| 3517 | Each of these fields might be empty or nil, but the locale is invalid | 3516 | Each of these fields might be empty or nil, but the locale is invalid |
| 3518 | if LANGUAGE is empty. Users of this variable should consider the | 3517 | if LANGUAGE is empty. Users of this variable should consider the |
| 3519 | language US English in this scenario. */); | 3518 | language to be US English if LANGUAGE is empty. */); |
| 3520 | Vandroid_os_language = Qnil; | 3519 | Vandroid_os_language = Qnil; |
| 3521 | 3520 | ||
| 3522 | /* Functions defined. */ | 3521 | /* Functions defined. */ |