# HG changeset patch # User Oleksandr Gavenko # Date 1340828731 -10800 # Node ID 4c5042015cd7e24ed17e8a0ad311998d74e6f180 # Parent 6f760b455ec630e2c377d12a2d584a41fe661d92 Add Readline support for Guile. diff -r 6f760b455ec6 -r 4c5042015cd7 .guile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.guile Wed Jun 27 23:25:31 2012 +0300 @@ -0,0 +1,8 @@ +;-*- mode: scheme -*- + +;; Readline support. +(use-modules (ice-9 readline)) +(activate-readline) +(readline-enable 'history-file) +(readline-set! history-length 10000) + diff -r 6f760b455ec6 -r 4c5042015cd7 Makefile --- a/Makefile Wed Jun 27 22:39:47 2012 +0300 +++ b/Makefile Wed Jun 27 23:25:31 2012 +0300 @@ -36,8 +36,9 @@ OVERRIDDEN_ITEMS := \ .fvwm .xxkbrc .xmodmaprc .fonts.conf \ .inputrc .minttyrc .Xdefaults .xinitrc .xserverrc .screenrc .dircolors \ - .bashrc .bash_path .bash_completion .zshrc .vimrc .ssh .pystartup \ - .pylintrc \ + .bashrc .bash_path .bash_completion .zshrc .vimrc .ssh \ + .pylintrc .pystartup \ + .guile \ .signature .muttrc .tidy \ .dictrc \ .hgrc .hgignore .hgstyle .bazaar .gitconfig .gitignore .cvsrc \