[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: TUTORIAL and scroll bar
From: |
Eli Zaretskii |
Subject: |
Re: TUTORIAL and scroll bar |
Date: |
Wed, 09 Aug 2006 06:29:59 +0300 |
> From: Richard Stallman <address@hidden>
> Date: Tue, 08 Aug 2006 19:39:44 -0400
>
> The tutorial says the scroll bar is on the left.
> Is that true (by default) on all systems?
No. frame.c initializes the default scroll bar position as follows:
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(MAC_OS)
/* MS-Windows has 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
I guess this is done to be consistent with the defaults of the
respective window-system.
- TUTORIAL and scroll bar, Richard Stallman, 2006/08/08
- Re: TUTORIAL and scroll bar,
Eli Zaretskii <=
- Re: TUTORIAL and scroll bar, Chong Yidong, 2006/08/08
- Re: TUTORIAL and scroll bar, Romain Francoise, 2006/08/09
- Re: TUTORIAL and scroll bar, Richard Stallman, 2006/08/09
- Re: TUTORIAL and scroll bar, Jan Djärv, 2006/08/10
- Re: TUTORIAL and scroll bar, Miles Bader, 2006/08/10
- Re: TUTORIAL and scroll bar, Jan Djärv, 2006/08/10
- Re: TUTORIAL and scroll bar, David Kastrup, 2006/08/10
- Re: TUTORIAL and scroll bar, David Kastrup, 2006/08/10
Re: TUTORIAL and scroll bar, David Kastrup, 2006/08/09