home *** CD-ROM | disk | FTP | other *** search
- To: vim-dev@vim.org
- Subject: Patch 6.1.191
- Fcc: outbox
- From: Bram Moolenaar <Bram@moolenaar.net>
- Mime-Version: 1.0
- Content-Type: text/plain; charset=ISO-8859-1
- Content-Transfer-Encoding: 8bit
- ------------
-
- Patch 6.1.191
- Problem: When using "vim -s script" and redirecting the output, the delay
- for the "Output is not to a terminal" warning slows Vim down too
- much.
- Solution: Don't delay when reading commands from a script.
- Files: src/main.c
-
-
- *** ../vim61.190/src/main.c Mon Sep 23 21:05:32 2002
- --- src/main.c Fri Sep 20 22:00:52 2002
- ***************
- *** 1157,1163 ****
- if (!input_isatty)
- mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
- out_flush();
- ! ui_delay(2000L, TRUE);
- TIME_MSG("Warning delay");
- }
-
- --- 1157,1164 ----
- if (!input_isatty)
- mch_errmsg(_("Vim: Warning: Input is not from a terminal\n"));
- out_flush();
- ! if (scriptin[0] == NULL)
- ! ui_delay(2000L, TRUE);
- TIME_MSG("Warning delay");
- }
-
- *** ../vim61.190/src/version.c Mon Sep 23 21:05:32 2002
- --- src/version.c Mon Sep 23 21:08:06 2002
- ***************
- *** 608,609 ****
- --- 608,611 ----
- { /* Add new patch number below this line */
- + /**/
- + 191,
- /**/
-
- --
- The startling truth finally became apparent, and it was this: Numbers
- written on restaurant checks within the confines of restaurants do not follow
- the same mathematical laws as numbers written on any other pieces of paper in
- any other parts of the Universe. This single statement took the scientific
- world by storm. So many mathematical conferences got held in such good
- restaurants that many of the finest minds of a generation died of obesity and
- heart failure, and the science of mathematics was put back by years.
- -- Douglas Adams, "The Hitchhiker's Guide to the Galaxy"
-
- /// Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net \\\
- /// Creator of Vim - Vi IMproved -- http://www.vim.org \\\
- \\\ Project leader for A-A-P -- http://www.a-a-p.org ///
- \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
-