summaryrefslogtreecommitdiffstats
path: root/Src/input.c
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2023-01-10 20:53:17 +0100
committerOliver Kiddle <opk@zsh.org>2023-01-10 20:53:17 +0100
commit667ead3a64e590ac758e9f0a053849c7aaccec66 (patch)
tree2ef4d722cc527d11cf81534b27e6af6f5e95c51b /Src/input.c
parent51276: Fix diff completion for non GNU / FreeBSD platforms (diff)
downloadzsh-667ead3a64e590ac758e9f0a053849c7aaccec66.tar
zsh-667ead3a64e590ac758e9f0a053849c7aaccec66.tar.gz
zsh-667ead3a64e590ac758e9f0a053849c7aaccec66.tar.bz2
zsh-667ead3a64e590ac758e9f0a053849c7aaccec66.tar.lz
zsh-667ead3a64e590ac758e9f0a053849c7aaccec66.tar.xz
zsh-667ead3a64e590ac758e9f0a053849c7aaccec66.tar.zst
zsh-667ead3a64e590ac758e9f0a053849c7aaccec66.zip
51258, 51272: refactor handling of terminal attributes, removing OFF flags in zattr
Diffstat (limited to 'Src/input.c')
-rw-r--r--Src/input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/input.c b/Src/input.c
index d55b05696..5a612669b 100644
--- a/Src/input.c
+++ b/Src/input.c
@@ -402,7 +402,7 @@ inputline(void)
char *pptbuf;
int pptlen;
pptbuf = unmetafy(promptexpand(ingetcpmptl ? *ingetcpmptl : NULL,
- 0, NULL, NULL, NULL), &pptlen);
+ 0, NULL, NULL), &pptlen);
write_loop(2, pptbuf, pptlen);
free(pptbuf);
}