No longer need to explicitly use emacs version
This commit is contained in:
parent
e0f7807396
commit
ea091488b6
|
@ -133,7 +133,7 @@ function restore_remote_emacs {
|
|||
}
|
||||
|
||||
function remove_emacs {
|
||||
apt-get -yq remove --purge emacs24
|
||||
apt-get -yq remove --purge emacs
|
||||
update-alternatives --set editor /usr/bin/nano
|
||||
sed -i '/install_emacs/d' $COMPLETION_FILE
|
||||
|
||||
|
@ -156,8 +156,8 @@ function remove_emacs {
|
|||
}
|
||||
|
||||
function install_emacs {
|
||||
apt-get -yq install emacs24
|
||||
update-alternatives --set editor /usr/bin/emacs24
|
||||
apt-get -yq install emacs
|
||||
update-alternatives --set editor /usr/bin/emacs
|
||||
|
||||
# A minimal emacs configuration
|
||||
#echo -n "(add-to-list 'load-path " > /home/$MY_USERNAME/.emacs
|
||||
|
|
|
@ -766,7 +766,7 @@ function configure_user_interface {
|
|||
chroot "$rootdir" apt-get -yq install libtheora-bin libvorbis-dev v4l-utils
|
||||
|
||||
# a sane editor
|
||||
chroot "$rootdir" apt-get -yq install emacs24
|
||||
chroot "$rootdir" apt-get -yq install emacs
|
||||
|
||||
# for wifi monitoring
|
||||
chroot "$rootdir" apt-get -yq install horst
|
||||
|
|
Loading…
Reference in New Issue