diff options
| author | Mikael Magnusson <mikachu@gmail.com> | 2026-05-22 09:12:09 +0200 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@gmail.com> | 2026-05-22 09:13:43 +0200 |
| commit | 14bef834ce52aefb8fcb4e808121a599bb315ca3 (patch) | |
| tree | 0007c41701f227e1b6fdb8b9c84a4348556341f7 | |
| parent | unposted: add error message and improve tests for w/54571 (diff) | |
| download | zsh-14bef834ce52aefb8fcb4e808121a599bb315ca3.tar zsh-14bef834ce52aefb8fcb4e808121a599bb315ca3.tar.gz zsh-14bef834ce52aefb8fcb4e808121a599bb315ca3.tar.bz2 zsh-14bef834ce52aefb8fcb4e808121a599bb315ca3.tar.lz zsh-14bef834ce52aefb8fcb4e808121a599bb315ca3.tar.xz zsh-14bef834ce52aefb8fcb4e808121a599bb315ca3.tar.zst zsh-14bef834ce52aefb8fcb4e808121a599bb315ca3.zip | |
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Src/Modules/curses.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2026-05-22 Mikael Magnusson <mikachu@gmail.com> + + * unposted: Src/Modules/curses.c: fix missing return keyword + in 54552 + 2026-05-21 dana <dana@dana.is> * unposted: Src/parse.c, Test/A09zwc.ztst, Test/B14zwc.ztst: diff --git a/Src/Modules/curses.c b/Src/Modules/curses.c index 5cb03046d..f07ce7fd2 100644 --- a/Src/Modules/curses.c +++ b/Src/Modules/curses.c @@ -1419,7 +1419,7 @@ zccmd_position(const char *nam, char **args) } array[6] = NULL; - !setaparam(args[1], array); + return !setaparam(args[1], array); } |
