Put scroll-bar on right by default on UNIX.
authorChong Yidong <cyd@stupidchicken.com>
Fri, 12 Mar 2010 17:32:30 +0000 (12:32 -0500)
committerChong Yidong <cyd@stupidchicken.com>
Fri, 12 Mar 2010 17:32:30 +0000 (12:32 -0500)
* frame.c (Vdefault_frame_scroll_bars): Set default to Qright for all window systems.

src/ChangeLog
src/frame.c

index 5f9e246..7c73acf 100644 (file)
@@ -1,3 +1,8 @@
+2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
+
+       * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
+       all window systems.
+
 2010-03-12  Eli Zaretskii  <eliz@gnu.org>
 
        * Makefilie.in (termcapobj): Move termcap.o from here...
index f05f9f7..c779f1c 100644 (file)
@@ -4584,12 +4584,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 scroll bars on this window-system.  */);
 #ifdef HAVE_WINDOW_SYSTEM
-#if defined(HAVE_NTGUI) || defined(NS_IMPL_COCOA)
-  /* MS-Windows and Mac OS X have scroll bars on the right by default.  */
   Vdefault_frame_scroll_bars = Qright;
-#else
-  Vdefault_frame_scroll_bars = Qleft;
-#endif
 #else
   Vdefault_frame_scroll_bars = Qnil;
 #endif