summaryrefslogtreecommitdiff
path: root/Src/prompt.c
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2023-01-10 21:06:55 +0100
committerOliver Kiddle <opk@zsh.org>2023-01-10 21:06:55 +0100
commitcc672f1c3bfa9cdf4bbf100d85439340a479cb6b (patch)
tree1dd3d3c01c49c388c7ce02a8cc1abd43ab368bbd /Src/prompt.c
parent9d99a01367e85dc3d9cd8e711d78dc1cec6f018b (diff)
downloadzsh-cc672f1c3bfa9cdf4bbf100d85439340a479cb6b.tar.gz
zsh-cc672f1c3bfa9cdf4bbf100d85439340a479cb6b.zip
51289: don't disable non-colour attributes in prompts for SINGLE_LINE_ZLE and remove superfluous extra escapes to disable attributes
Diffstat (limited to 'Src/prompt.c')
-rw-r--r--Src/prompt.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Src/prompt.c b/Src/prompt.c
index 488a90d09..4f29a6728 100644
--- a/Src/prompt.c
+++ b/Src/prompt.c
@@ -1004,8 +1004,7 @@ stradd(char *d)
mod_export void
tsetcap(int cap, int flags)
{
- if (tccan(cap) && !isset(SINGLELINEZLE) &&
- !(termflags & (TERM_NOUP|TERM_BAD|TERM_UNKNOWN))) {
+ if (tccan(cap) && !(termflags & (TERM_NOUP|TERM_BAD|TERM_UNKNOWN))) {
switch (flags) {
case TSC_RAW:
tputs(tcstr[cap], 1, putraw);