Installed on Cygwin:
$ uname -a
CYGWIN_NT-5.1 STLWD302681 1.5.25(0.156/4/2) 2008-06-12 19:34 i686 Cygwin
Running "emacs -nw filename" from the command prompt results in empty emacs buffer and a status bar message that says:
Symbol's function definition is void: set-scroll-bar-mode-1
A quick search identified the location of the problem:
$ find /usr -name '*.el' | xargs grep...
I do not have root priviledges on my work computer, but I am part of the administrative group. Running the emacro.install complains that I am not root because my uid is != 0:
$ id
uid=162968(p044529) gid=10545(mkgroup-l-d) groups=0(root),544(Administrators),555(Remote Desktop Users),545(Users),10545(mkgroup-l-d)
However, since I am part of groups 0 (root) and 544 (Administrators) there...