1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-06-09 18:38:05 +02:00

51310: zle -F handlers preserve LASTWIDGET

Also fix email address in an old ChangeLog entry
This commit is contained in:
Bart Schaefer 2023-01-21 19:18:15 -08:00
parent 03292bceec
commit f93ad02b94
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2023-01-21 Bart Schaefer <schaefer@zsh.org>
* 51310: Src/Zle/zle_main.c: zle -F handlers preserve LASTWIDGET
2023-01-16 Peter Stephenson <p.stephenson@samsung.com> 2023-01-16 Peter Stephenson <p.stephenson@samsung.com>
* 51278: Src/params.c, Test/D06subscript.ztst: result of (i) * 51278: Src/params.c, Test/D06subscript.ztst: result of (i)
@ -627,7 +631,7 @@
* 49960: Doc/Zsh/compsys.yo: Sort lists in zshcompsys. * 49960: Doc/Zsh/compsys.yo: Sort lists in zshcompsys.
2022-04-05 Bart Schaefer <schaefer@toltec-ubuntu> 2022-04-05 Bart Schaefer <schaefer@zsh.org>
* 49994: Src/glob.c: Single-byte equivalence of users/22601 and * 49994: Src/glob.c: Single-byte equivalence of users/22601 and
workers/40891 for matching against zero-length strings workers/40891 for matching against zero-length strings

View file

@ -737,6 +737,7 @@ raw_getbyte(long do_keytmout, char *cptr, int full)
) { ) {
/* Handle the fd. */ /* Handle the fd. */
char *fdbuf; char *fdbuf;
Thingy save_lbindk = lbindk;
{ {
char buf[BDIGBUFSIZE]; char buf[BDIGBUFSIZE];
convbase(buf, lwatch_fd->fd, 10); convbase(buf, lwatch_fd->fd, 10);
@ -779,6 +780,7 @@ raw_getbyte(long do_keytmout, char *cptr, int full)
*/ */
errtry = 1; errtry = 1;
} }
lbindk = save_lbindk;
} }
} }
/* Function may have invalidated the display. */ /* Function may have invalidated the display. */