mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 13:33:52 +01:00
avoid adding empty strings to the kill ring (13767)
This commit is contained in:
parent
ea08ba3cea
commit
4e994fddce
@ -1,8 +1,11 @@
|
||||
2001-03-26 Sven Wischnowsky <wischnow@zsh.org>
|
||||
|
||||
* 13767: Src/Zle/zle_utils.c: avoid adding empty strings to
|
||||
the kill ring
|
||||
|
||||
* 13763: Completion/Builtins/_pids, Doc/Zsh/compsys.yo: _pids
|
||||
* shouldn't start menu completion if the current word starts
|
||||
* with a hyphen; typo fix in compsys.yo
|
||||
shouldn't start menu completion if the current word starts
|
||||
with a hyphen; typo fix in compsys.yo
|
||||
|
||||
2001-03-25 Bart Schaefer <schaefer@zsh.org>
|
||||
|
||||
|
@ -128,6 +128,9 @@ forekill(int ct, int dir)
|
||||
void
|
||||
cut(int i, int ct, int dir)
|
||||
{
|
||||
if (!ct)
|
||||
return;
|
||||
|
||||
if (zmod.flags & MOD_VIBUF) {
|
||||
struct cutbuffer *b = &vibuf[zmod.vibuf];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user