diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-06-04 22:06:24 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-06-04 22:06:24 +0000 |
commit | 75c50c46a69d25ac94a55bae8a9642316d52be00 (patch) | |
tree | 2cefbd38adf2f259b314f40ff4c310713e07d4d1 /src/ex_getln.c | |
parent | 51485f06246966898f7c00e2e53b1ba4c6855cf7 (diff) | |
download | vim-75c50c46a69d25ac94a55bae8a9642316d52be00.zip |
updated for version 7.0079
Diffstat (limited to 'src/ex_getln.c')
-rw-r--r-- | src/ex_getln.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c index a71b68ef9..5d04ad301 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -5297,7 +5297,7 @@ write_viminfo_history(fp) p = history[type][i].hisstr; if (p != NULL) { - putc(hist_type2char(type, TRUE), fp); + fputc(hist_type2char(type, TRUE), fp); /* For the search history: put the separator in the second * column; use a space if there isn't one. */ if (type == HIST_SEARCH) |