aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2023-12-16 11:13:33 +0200
committerEli Zaretskii2023-12-16 11:13:33 +0200
commit8b3fc9833845eb0f197b27e8fe999cfeed8dc48c (patch)
tree0b85a1d440775606bbc36b6bea8a5906225683b7 /src
parent100a2ab24605b973172b39d0b21adcdcd9907ba9 (diff)
downloademacs-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.c11
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.
3504This list incorporates four elements LANGUAGE, COUNTRY, SCRIPT 3504This list has four elements: LANGUAGE, COUNTRY, SCRIPT and VARIANT, where:
3505and VARIANT, of which:
3506 3505
3507LANGUAGE and COUNTRY are ISO language and country codes identical to 3506LANGUAGE and COUNTRY are ISO language and country codes identical to
3508those stored within POSIX locales. 3507those found in POSIX locale specifications.
3509 3508
3510SCRIPT is an ISO 15924 script tag, representing the script used 3509SCRIPT is an ISO 15924 script tag, representing the script used
3511if available, or if required to disambiguate between distinct 3510if available, or if required to disambiguate between distinct
3512writing systems for the same combination of language and country. 3511writing systems for the same combination of language and country.
3513 3512
3514VARIANT is an arbitrary string representing the variant of the 3513VARIANT is an arbitrary string representing the variant of the
3515LANGUAGE or SCRIPT represented. 3514LANGUAGE or SCRIPT.
3516 3515
3517Each of these fields might be empty or nil, but the locale is invalid 3516Each of these fields might be empty or nil, but the locale is invalid
3518if LANGUAGE is empty. Users of this variable should consider the 3517if LANGUAGE is empty. Users of this variable should consider the
3519language US English in this scenario. */); 3518language 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. */