mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-03 10:21:46 +02:00
53454: fix interrupt handling in savehistfile()
This commit is contained in:
parent
ba1473181f
commit
bacc78ec3f
2 changed files with 12 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2025-04-15 Bart Schaefer <schaefer@zsh.org>
|
||||||
|
|
||||||
|
* 53454: Src/hist.c: fix interrupt handling in savehistfile()
|
||||||
|
|
||||||
2025-04-15 Eric Cook <illua@users.sourceforge.net>
|
2025-04-15 Eric Cook <illua@users.sourceforge.net>
|
||||||
|
|
||||||
* 53485: NEWS: update for version 5.10
|
* 53485: NEWS: update for version 5.10
|
||||||
|
|
13
Src/hist.c
13
Src/hist.c
|
@ -2838,11 +2838,12 @@ readhistfile(char *fn, int err, int readflags)
|
||||||
*/
|
*/
|
||||||
if (uselex || remeta)
|
if (uselex || remeta)
|
||||||
freeheap();
|
freeheap();
|
||||||
if (errflag & ERRFLAG_INT) {
|
if (errflag & ERRFLAG_INT)
|
||||||
/* Can't assume fast read next time if interrupted. */
|
|
||||||
lasthist.interrupted = 1;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
if (errflag & ERRFLAG_INT) {
|
||||||
|
/* Can't assume fast read next time if interrupted. */
|
||||||
|
lasthist.interrupted = 1;
|
||||||
}
|
}
|
||||||
if (start && readflags & HFILE_USE_OPTIONS) {
|
if (start && readflags & HFILE_USE_OPTIONS) {
|
||||||
zsfree(lasthist.text);
|
zsfree(lasthist.text);
|
||||||
|
@ -3108,7 +3109,9 @@ savehistfile(char *fn, int err, int writeflags)
|
||||||
hist_ignore_all_dups |= isset(HISTSAVENODUPS);
|
hist_ignore_all_dups |= isset(HISTSAVENODUPS);
|
||||||
readhistfile(fn, err, 0);
|
readhistfile(fn, err, 0);
|
||||||
hist_ignore_all_dups = isset(HISTIGNOREALLDUPS);
|
hist_ignore_all_dups = isset(HISTIGNOREALLDUPS);
|
||||||
if (histlinect)
|
if (errflag & ERRFLAG_INT)
|
||||||
|
ret = -1;
|
||||||
|
else if (histlinect)
|
||||||
savehistfile(fn, err, 0);
|
savehistfile(fn, err, 0);
|
||||||
|
|
||||||
pophiststack();
|
pophiststack();
|
||||||
|
|
Loading…
Reference in a new issue