]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't enable scroll-bar-mode by default on Android
authorPo Lu <luangruo@yahoo.com>
Tue, 18 Jul 2023 04:08:04 +0000 (12:08 +0800)
committerPo Lu <luangruo@yahoo.com>
Tue, 18 Jul 2023 04:08:04 +0000 (12:08 +0800)
* src/frame.c (syms_of_frame): Default to nil if HAVE_ANDROID.

src/frame.c

index 35881ce6de1235a57d76582744662ea144f6ccce..da00cbf4bce8794313bae6e9f70951d4415b8c91 100644 (file)
@@ -6489,7 +6489,7 @@ Setting this variable does not affect existing frames, only new ones.  */);
 
   DEFVAR_LISP ("default-frame-scroll-bars", Vdefault_frame_scroll_bars,
               doc: /* Default position of vertical scroll bars on this window-system.  */);
-#ifdef HAVE_WINDOW_SYSTEM
+#if defined HAVE_WINDOW_SYSTEM && !defined HAVE_ANDROID
 #if defined (HAVE_NTGUI) || defined (NS_IMPL_COCOA) || (defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS))
   /* MS-Windows, macOS, and GTK have scroll bars on the right by
      default.  */
@@ -6497,9 +6497,9 @@ Setting this variable does not affect existing frames, only new ones.  */);
 #else
   Vdefault_frame_scroll_bars = Qleft;
 #endif
-#else
+#else /* !HAVE_WINDOW_SYSTEM || HAVE_ANDROID */
   Vdefault_frame_scroll_bars = Qnil;
-#endif
+#endif /* HAVE_WINDOW_SYSTEM && !HAVE_ANDROID */
 
   DEFVAR_BOOL ("scroll-bar-adjust-thumb-portion",
                scroll_bar_adjust_thumb_portion_p,