diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-10-04 19:16:55 +0000 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-10-07 02:45:27 +0000 |
commit | ff023a47e33cf2f652a7f0805f677d2afa7580cb (patch) | |
tree | bc0ebaee90424c00b51b7431a082ca86d76599b8 /src/nvim/ex_cmds.c | |
parent | b80d8039670ff3405a7f5ea9b6b4444f5c337d18 (diff) | |
download | rneovim-ff023a47e33cf2f652a7f0805f677d2afa7580cb.tar.gz rneovim-ff023a47e33cf2f652a7f0805f677d2afa7580cb.tar.bz2 rneovim-ff023a47e33cf2f652a7f0805f677d2afa7580cb.zip |
version: remove non-functional Vim version identifiers
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index c3408cc4db..78c8b61c37 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -1724,8 +1724,8 @@ static void do_viminfo(FILE *fp_in, FILE *fp_out, int flags) } if (fp_out != NULL) { /* Write the info: */ - fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"), - VIM_VERSION_MEDIUM); + fprintf(fp_out, _("# This viminfo file was generated by Nvim %s.\n"), + NVIM_VERSION_MEDIUM); fputs(_("# You may edit it if you're careful!\n\n"), fp_out); fputs(_("# Value of 'encoding' when this file was written\n"), fp_out); fprintf(fp_out, "*encoding=%s\n\n", p_enc); |