[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: W32 with native scroll bars woes
From: |
Eli Zaretskii |
Subject: |
Re: W32 with native scroll bars woes |
Date: |
Mon, 19 Jan 2015 20:09:18 +0200 |
> From: David Requena Zabala <address@hidden>
> Date: Mon, 19 Jan 2015 18:47:20 +0100
>
> I don’t seem to be able to get this going. Here is how I build emacs 24.4.1 as
> released:
>
> system-configuration-options is a variable defined in `C source code'.
>
> Its value is
>
> "--enable-checking --without-toolkit-scroll-bars --with-x-toolkit=no
> 'CFLAGS=-O0 -g3' CPPFLAGS=-DGLYPH_DEBUG=1"
These 2 options:
--without-toolkit-scroll-bars --with-x-toolkit=no
are meaningless in the w32 build, and shouldn't change anything.
Please for starters reconfigure without them and rebuild.
Also, instead of "--enable-checking" and CPPFLAGS=-DGLYPH_DEBUG=1,
please use just this:
--enable-checking=yes,glyphs
> Even built with '--without-toolkit-scroll-bars' Windows styled scrollbars are
> drawn on screen
You cannot disable the scroll bars at build time on Windows, only at
run time. Once inside Emacs, "M-x scroll-bar-mode RET" should remove
the scroll bars.
> and, worse, any mouse interaction with them makes emacs instantly
> crash.
Doesn't happen to me. If rebuilding as described above doesn't help,
please run Emacs under GDB, reproduce the crash, and post the
backtrace as part of a full bug report (using "M-x report-emacs-bug").
Filing a bug report will also collect and report additional
information about your build which is necessary for analyzing the bug.
> Is this a not supported (like on NextStep) thing or something?
Scroll bars are supported on Windows and do work.
Thanks.