picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

commit 506f567e7e7cd2b3ada597f7b46d764067bc3718
parent ffeef5d3b6e31f9ed5a8e4158062b0161a9af1f0
Author: Alexander Burger <abu@software-lab.de>
Date:   Thu, 30 May 2013 14:41:07 +0200

Line editor Ctrl-E and Ctrl-K changes
Diffstat:
Mlib/eled.l | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/eled.l b/lib/eled.l @@ -537,11 +537,11 @@ (chgLine "UndoLine" "UndoPos") (setq "UndoLine" "L" "UndoPos" "P") ) ) # move-end-of-line - ("^e" (xMove)) + ("^e" (eMove) (xMove)) # move-beginning-of-line ("^a" (bMove)) # kill-line - ("^k" (doUndo) (clrEol)) + ("^k" (doUndo) (clrEol) (rMove T)) # backward-char ("^b" (lMove)) # forward-char