diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2003-01-27 14:54:31 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2003-01-27 14:54:31 +0000 |
commit | 778a73b027509c9c9f70c8dbd184097efeacae43 (patch) | |
tree | 17d52da7da8fd0a1f85a0491b52e80ab66299f4b /Src/Zle/zle.h | |
parent | cd70d2745cc34cd05292e6c87fa1e4f272792313 (diff) | |
download | zsh-778a73b027509c9c9f70c8dbd184097efeacae43.tar.gz zsh-778a73b027509c9c9f70c8dbd184097efeacae43.tar.xz zsh-778a73b027509c9c9f70c8dbd184097efeacae43.zip |
18139: Improve $killring interface; can now change length. Empty
strings in $killring are ignored when yank-popping. Yank-popping is more consistent about looping and using the original cutbuffer.
Diffstat (limited to 'Src/Zle/zle.h')
-rw-r--r-- | Src/Zle/zle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/zle.h b/Src/Zle/zle.h index a611fd58b..e636073c8 100644 --- a/Src/Zle/zle.h +++ b/Src/Zle/zle.h @@ -142,7 +142,7 @@ typedef struct cutbuffer *Cutbuffer; #define CUTBUFFER_LINE 1 /* for vi: buffer contains whole lines of data */ -#define KRINGCT 8 /* number of buffers in the kill ring */ +#define KRINGCTDEF 8 /* default number of buffers in the kill ring */ /* Types of completion. */ |