]> granicus.if.org Git - vim/commitdiff
patch 8.0.1308: the "Reading from stdin" message may be undesired v8.0.1308
authorBram Moolenaar <Bram@vim.org>
Sat, 18 Nov 2017 13:55:23 +0000 (14:55 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 18 Nov 2017 13:55:23 +0000 (14:55 +0100)
Problem:    The "Reading from stdin" message may be undesired and there is no
            easy way to skip it.
Solution:   Don't show the message with --not-a-term was used.

src/fileio.c
src/version.c

index 2c5c8b9b4ad24cbd605d3b190ce800539ca07890..fb49f28f8165b896fa8523e65bab7902fdb86050 100644 (file)
@@ -849,17 +849,20 @@ readfile(
         */
        if (read_stdin)
        {
+           if (!is_not_a_term())
+           {
 #ifndef ALWAYS_USE_GUI
-           mch_msg(_("Vim: Reading from stdin...\n"));
+               mch_msg(_("Vim: Reading from stdin...\n"));
 #endif
 #ifdef FEAT_GUI
-           /* Also write a message in the GUI window, if there is one. */
-           if (gui.in_use && !gui.dying && !gui.starting)
-           {
-               p = (char_u *)_("Reading from stdin...");
-               gui_write(p, (int)STRLEN(p));
-           }
+               /* Also write a message in the GUI window, if there is one. */
+               if (gui.in_use && !gui.dying && !gui.starting)
+               {
+                   p = (char_u *)_("Reading from stdin...");
+                   gui_write(p, (int)STRLEN(p));
+               }
 #endif
+           }
        }
        else if (!read_buffer)
            filemess(curbuf, sfname, (char_u *)"", 0);
index 276f4fba00430e6290b7e54464e2557d864b156d..c81d7a39b611aec1626a6a468e4ed559aeaf4f5f 100644 (file)
@@ -766,6 +766,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1308,
 /**/
     1307,
 /**/