As emacs is my favourite editor and Swedish is my native language, it'd be nice if you could type "åäö" in emacs. I haven't gotten it to work in emacs21 (which is what Bubba|2 runs at the moment).
1. Anyone have info on how to get åäö to work with utf8 support in emacs21?
2. Anyone knows how to install emacs23 on Bubba|2? I tried to add the "sid" repository, but it won't accept it.
Thanks!
/Bo
New user's registration have been closed due to high spamming and low trafic on this forum. Please contact forum admins directly if you need an account. Thanks !
åäö in emacs, or emacs23
Re: åäö in emacs, or emacs23
Regarding 2, If you can't find it in any repository and really want it, you can install it from source.
The last 3 steps will take some time 
Code: Select all
(as root) apt-get install make gcc g++ libncurses5-dev
Code: Select all
wget http://ftp.gnu.org/pub/gnu/emacs/emacs-23.1.tar.gz
tar -xvf emacs-23.1.tar.gz
cd emacs-23.1
./configure --without-x --without-makeinfo
make
(as root) make install

Re: åäö in emacs, or emacs23
To get äöå to work in emacs21 you should add this
in your .emacs file
Code: Select all
(set-keyboard-coding-system 'mule-utf-8)