aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNicolas Hillegeer <nicolas@hillegeer.com>2014-07-18 17:49:27 +0200
committerJustin M. Keyes <justinkz@gmail.com>2014-07-20 16:59:58 -0400
commit2fcfee39ce56344477f835e57738284790cad305 (patch)
treee9880fffeb58d9795e96f42fe5b56547a0e8ddb5 /src
parentfb15cbbaea4ae2b8c75ffa308997f18479135a4f (diff)
downloadrneovim-2fcfee39ce56344477f835e57738284790cad305.tar.gz
rneovim-2fcfee39ce56344477f835e57738284790cad305.tar.bz2
rneovim-2fcfee39ce56344477f835e57738284790cad305.zip
startuptime: print vim -> nvim
Diffstat (limited to 'src')
-rw-r--r--src/nvim/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c
index 0c474c9ad4..ac1366bfd9 100644
--- a/src/nvim/main.c
+++ b/src/nvim/main.c
@@ -715,7 +715,7 @@ main_loop (
* has been done, close any file for startup messages. */
if (time_fd != NULL) {
TIME_MSG("first screen update");
- TIME_MSG("--- VIM STARTED ---");
+ TIME_MSG("--- NVIM STARTED ---");
fclose(time_fd);
time_fd = NULL;
}
@@ -1468,7 +1468,7 @@ static void init_startuptime(mparm_T *paramp)
for (int i = 1; i < paramp->argc; i++) {
if (STRICMP(paramp->argv[i], "--startuptime") == 0 && i + 1 < paramp->argc) {
time_fd = mch_fopen(paramp->argv[i + 1], "a");
- time_start("--- VIM STARTING ---");
+ time_start("--- NVIM STARTING ---");
break;
}
}