Héctor A. Abreu <[email protected]> writes: > I am following instructions from https://gitorious.org/evil/pages/Home#toc_0 > on a fresh Raspian install, Raspberry Pi w/ Debian Wheezy, GNU Emacs 23.4.1 > that comes with the distro. I am getting the following error when > downloading: > > pi@raspberrypi ~ $ sudo git clone git://gitorious.org/evil/evil.git > Cloning into 'evil'... > fatal: The remote end hung up unexpectedly
Why sudo? Maybe it is some firewall problem. You can try the http protocol: git clone http://gitorious.org/evil/evil.git > So I managed to download the alternative tarball of master (.tar.gz) but > now I get the following error when I start emacs, not sure if it's because > my machine is set to es_US-UTF8: > > Warning (initialization): An error occurred while loading `/home/pi/.emacs': > > Symbol's value as variable is void: deactivate-current-input-method-function deactivate-current-input-method-function was not present on Emacs 23. It was introduced on some 24.x release. You can try replacing the uses of deactivate-current-input-method-function with inactivate-current-input-method-function in your local copy of the evil source code or adding deactivate-current-input-method-function as an alias for inactivate-current-input-method-function in your .emacs (see `defalias'). _______________________________________________ implementations-list mailing list [email protected] https://lists.ourproject.org/cgi-bin/mailman/listinfo/implementations-list
