diff options
| author | Po Lu | 2023-02-23 21:49:02 +0800 |
|---|---|---|
| committer | Po Lu | 2023-02-23 21:49:02 +0800 |
| commit | 0b7d9bbc8ace172ce5602f78c9b3357f754052d9 (patch) | |
| tree | ff4f3cc9a6a767d7ca822bf9f0d5cada77cd25f0 /src/androidterm.c | |
| parent | e3595debd0c7e2c82a71c272eb8b6729ba426023 (diff) | |
| download | emacs-0b7d9bbc8ace172ce5602f78c9b3357f754052d9.tar.gz emacs-0b7d9bbc8ace172ce5602f78c9b3357f754052d9.zip | |
Make sure scroll-bar.el is loaded on Android
* lisp/loadup.el: Update commentary.
* src/androidterm.c (syms_of_androidterm): Define
Vx_toolkit_scroll_bars.
* src/xterm.c (syms_of_xterm): Update doc string.xf64
Diffstat (limited to 'src/androidterm.c')
| -rw-r--r-- | src/androidterm.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/androidterm.c b/src/androidterm.c index 0701ef44436..07d9f90a356 100644 --- a/src/androidterm.c +++ b/src/androidterm.c | |||
| @@ -5570,6 +5570,11 @@ If set to a non-float value, there will be no wait at all. */); | |||
| 5570 | This is a string that uniquely identifies the version of Android | 5570 | This is a string that uniquely identifies the version of Android |
| 5571 | Emacs is running on. */); | 5571 | Emacs is running on. */); |
| 5572 | 5572 | ||
| 5573 | /* Only defined so loadup.el loads scroll-bar.el. */ | ||
| 5574 | DEFVAR_LISP ("x-toolkit-scroll-bars", Vx_toolkit_scroll_bars, | ||
| 5575 | doc: /* SKIP: real doc in xterm.c. */); | ||
| 5576 | Vx_toolkit_scroll_bars = Qnil; | ||
| 5577 | |||
| 5573 | /* Avoid dumping Vandroid_build_fingerprint. */ | 5578 | /* Avoid dumping Vandroid_build_fingerprint. */ |
| 5574 | pdumper_do_now_and_after_load (android_set_build_fingerprint); | 5579 | pdumper_do_now_and_after_load (android_set_build_fingerprint); |
| 5575 | 5580 | ||