summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-05-03 22:25:40 +0200
committerBram Moolenaar <Bram@vim.org>2019-05-03 22:25:40 +0200
commit9404a18ad9a47b10fc8de908da833ba7f12f72f5 (patch)
treea15e0fcba7660aafe8c62bbbeb27dbac8b50825b
parent819d3e52a1eab35409ea7e0ebdb2340507a42684 (diff)
downloadvim-git-9404a18ad9a47b10fc8de908da833ba7f12f72f5.tar.gz
patch 8.1.1258: the "N files to edit" message can not be surpressedv8.1.1258
Problem: The "N files to edit" message can not be surpressed. Solution: Surpress the message with --not-a-term. (closes #4320)
-rw-r--r--src/main.c6
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 2b45b80ec..a57b196cf 100644
--- a/src/main.c
+++ b/src/main.c
@@ -375,9 +375,9 @@ main
setvbuf(stdout, NULL, _IOLBF, 0);
#endif
- /* This message comes before term inits, but after setting "silent_mode"
- * when the input is not a tty. */
- if (GARGCOUNT > 1 && !silent_mode)
+ // This message comes before term inits, but after setting "silent_mode"
+ // when the input is not a tty. Omit the message with --not-a-term.
+ if (GARGCOUNT > 1 && !silent_mode && !is_not_a_term())
printf(_("%d files to edit\n"), GARGCOUNT);
if (params.want_full_screen && !silent_mode)
diff --git a/src/version.c b/src/version.c
index e5582e99e..69ab34b42 100644
--- a/src/version.c
+++ b/src/version.c
@@ -768,6 +768,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1258,
+/**/
1257,
/**/
1256,