| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
double checked to make sure no binaries change, and eyed by niallo
|
| |
|
|
|
|
| |
Help and ok jaredy@ ok millert@
|
|
|
|
| |
ok millert@
|
| |
|
|
|
|
|
| |
sparc64, binary change in lex.o on macppc due to introduction of
dopprompt() prototype. ok millert@
|
| |
|
| |
|
|
|
|
| |
First step in making the ksh code easier to read. From Matthias Kilian
|
|
|
|
| |
ok deraadt@
|
|
|
|
|
|
|
|
|
|
|
| |
meta prefix, i.e. all characters with the top bit set (>= 0x80) are
taken as commands and cannot be entered literally.
Introduce a new shell option, emacs-usemeta, that allows to toggle
this behavior. The default is the traditional behavior; to enter
8-bit characters use "set +o emacs-usemeta".
ok fgsch@, henning@
|
| |
|
| |
|
| |
|
|
|
|
|
| |
prefix lenghts are equal ("a .b" and "a ab" by instance).
found and tested by otto@.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
insert (some text has been killed before). from otto@, fix PR/3384.
On yank-pop error (no yank before), reset the index to killstack so
another yank-pop does not mangle the prompt if nothing was yanked, and
to avoid replacing a text when it shouldn't
(yank <something> yank-pop yank-pop).
otto@ ok.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
tested by provos@ and me
|
|
|
|
|
|
|
|
|
| |
- bind TAB (^I) to complete-list by default
- complete-list now lists 'ls style' not 'menu style'
- complete-list first completes; if that does not work, it lists
- fix a memleak in emacs.c, do_complete
- completion now works after '=' (dd), and ':' (ssh) and ` (backtick)
- a command can now start with a subdir from the current dir
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
trap: exit traps now executed in subshells (without explicit exit call).
See the Changelog for a full list of changes.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
some that we had already fixed locally.
o typeset -f FUNC doesn't print follows command (and expression) substitutions.
o when re-allocating memory, too much may be copied from old memory.
o set -o printed some options sans names.
o emacs mode: <esc>. in very fist command causes core dump.
o pdksh dumps core after a cd command.
o typeset -i reports on array elements that have no value
(at&t ksh reports on array base name - no index).
o ulimit -ctn unlimittttted kills shell (resource exceeded).
o ". /dev/null" says access denied.
o flag field in aliases incorrectly changed (all flags set instead of
clearing ISSET) in exec.c(flushcom).
o ${#array[*]} prints largest index instead of number of (set) elements
in an array (ksh88 does the former).
o sys_siglist[] doesn't always have NSIG non-null entries...
|
| |
|
| |
|
| |
|
| |
|
|
|