mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 10:01:11 +02:00
unposted: add 'static' to shinsavestack
This commit is contained in:
parent
2a7945a900
commit
309d899507
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
2021-09-08 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
|
||||
|
||||
* unposted: Src/input.c: add 'static' to shinsavestack
|
||||
|
||||
* 49377: Src/Zle/zle_keymap.c, Test/X03zlebindkey.ztst: fix
|
||||
segfalut by 'bindkey -d' with reordered keymapnamtab
|
||||
|
||||
|
|
|
@ -150,7 +150,7 @@ struct shinsaveentry {
|
|||
};
|
||||
|
||||
/* SHIN buffer save stack */
|
||||
struct shinsaveentry *shinsavestack;
|
||||
static struct shinsaveentry *shinsavestack;
|
||||
|
||||
/* Reset the input buffer for SHIN, discarding any pending input */
|
||||
|
||||
|
|
Loading…
Reference in a new issue