Hi,
To improve bashdb, a bash debugger, we submitted two patches to bash,
adding readfile builtin and removing bashdb.el ever. I hope you don't
forget it:)
We would like submit one more patch, adding set0 builtin.
The purpose of set0 in the debugger is that users often write programs
that refer
Sorry for the delayed reply.
As I now understand it, the situation right now seems a bit inconsistent.
"read -e" in a script uses emacs bindings by default even if I've entered
"set -o emacs" which I note in the following example:
#!/usr/bin/env bash
set +o emacs
while read -e -p 'huh? ' line ;