diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2003-10-29 19:17:30 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2003-10-29 19:17:30 +0000 |
| commit | 815bc92148939ce369585c59d3af730f69833844 (patch) | |
| tree | 2787fe59d0c8b27c6a9cf18e65784cdbd925c9b1 /Src/input.c | |
| parent | zsh-users/6727 (Lloyd Zusman): improve _w3m (diff) | |
| download | zsh-815bc92148939ce369585c59d3af730f69833844.tar zsh-815bc92148939ce369585c59d3af730f69833844.tar.gz zsh-815bc92148939ce369585c59d3af730f69833844.tar.bz2 zsh-815bc92148939ce369585c59d3af730f69833844.tar.lz zsh-815bc92148939ce369585c59d3af730f69833844.tar.xz zsh-815bc92148939ce369585c59d3af730f69833844.tar.zst zsh-815bc92148939ce369585c59d3af730f69833844.zip | |
a la 19209: zcalloc -> zshcalloc
Diffstat (limited to 'Src/input.c')
| -rw-r--r-- | Src/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/input.c b/Src/input.c index 08ad4eb87..3867474b8 100644 --- a/Src/input.c +++ b/Src/input.c @@ -380,7 +380,7 @@ inungetc(int c) * can't back up where we want to. Instead, we just push it * onto the input stack as an extra character. */ - char *cback = (char *)zcalloc(2); + char *cback = (char *)zshcalloc(2); cback[0] = (char) c; inpush(cback, INP_FREE|INP_CONT, NULL); } |
