diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-02-02 23:09:45 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-02-02 23:09:45 +0000 |
commit | f583668da17052a7b9ff4cc4fc248f295313d86f (patch) | |
tree | 1477cc04f7305a442a4559140afcf595e7010dde /src/main.c | |
parent | 6ac5429d3b0860919333e38f1eb5b5617bf17314 (diff) | |
download | vim-git-f583668da17052a7b9ff4cc4fc248f295313d86f.tar.gz |
updated for version 7.0047
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c index 3b888f278..0919a4742 100644 --- a/src/main.c +++ b/src/main.c @@ -2469,7 +2469,7 @@ mainerr(n, str) #endif mch_errmsg(longVersion); - mch_errmsg("\n"); + mch_errmsg("\r\n"); mch_errmsg(_(main_errors[n])); if (str != NULL) { @@ -2477,7 +2477,7 @@ mainerr(n, str) mch_errmsg((char *)str); mch_errmsg("\""); } - mch_errmsg(_("\nMore info with: \"vim -h\"\n")); + mch_errmsg(_("\nMore info with: \"vim -h\"\r\n")); mch_exit(1); } |