home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / unreleased / patches / 6.0ax.009 < prev    next >
Encoding:
Internet Message Format  |  2001-09-20  |  1.6 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0ax.009
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. ------------
  6.  
  7. Patch 6.0ax.009
  8. Problem:    When in a terminal where Vim uses a second screen buffer, after
  9.         exiting, the shell prompt would be after the hit-return prompt of
  10.         a ":!" command. (Hans Fugal)
  11. Solution:   Output an extra newline in this situation when exiting.
  12. Files:        src/os_unix.c
  13.  
  14.  
  15. *** ../vim60ax.8/src/os_unix.c    Fri Sep 14 23:01:34 2001
  16. --- src/os_unix.c    Fri Sep 21 20:08:36 2001
  17. ***************
  18. *** 2325,2331 ****
  19.        * A newline is only required after a message in the alternate screen.
  20.        * This is set to TRUE by wait_return().
  21.        */
  22. !     if (!swapping_screen())
  23.       {
  24.           if (newline_on_exit || msg_didout)
  25.           out_char('\n');
  26. --- 2325,2331 ----
  27.        * A newline is only required after a message in the alternate screen.
  28.        * This is set to TRUE by wait_return().
  29.        */
  30. !     if (!swapping_screen() || newline_on_exit)
  31.       {
  32.           if (newline_on_exit || msg_didout)
  33.           out_char('\n');
  34. *** ../vim60ax.8/src/version.c    Fri Sep 21 20:12:48 2001
  35. --- src/version.c    Fri Sep 21 20:09:41 2001
  36. ***************
  37. *** 608,609 ****
  38. --- 608,611 ----
  39.   {   /* Add new patch number below this line */
  40. + /**/
  41. +     9,
  42.   /**/
  43.  
  44. -- 
  45. It is illegal for anyone to give lighted cigars to dogs, cats, and other
  46. domesticated animal kept as pets.
  47.         [real standing law in Illinois, United States of America]
  48.  
  49.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  50. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  51.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  52.