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 / patches / 7.3 / 7.3.477 < prev    next >
Encoding:
Internet Message Format  |  2012-11-20  |  1.7 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.477
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.3.477
  11. Problem:    Using ":echo" to output enough lines to scroll, then using "j" and
  12.         "k" at the more prompt, displays the command on top of the output.
  13.         (Marcin Szamotulski) 
  14. Solution:   Put the output below the command. (Christian Brabandt)
  15. Files:        src/eval.c
  16.  
  17.  
  18. *** ../vim-7.3.476/src/eval.c    2012-03-07 19:16:49.000000000 +0100
  19. --- src/eval.c    2012-03-23 15:11:30.000000000 +0100
  20. ***************
  21. *** 20492,20498 ****
  22. --- 20492,20503 ----
  23.           /* Call msg_start() after eval1(), evaluating the expression
  24.            * may cause a message to appear. */
  25.           if (eap->cmdidx == CMD_echo)
  26. +         {
  27. +             /* Put the output below the command, makes scrolling back
  28. +              * at more prompt work. */
  29. +             msg_didout = TRUE;
  30.               msg_start();
  31. +         }
  32.           }
  33.           else if (eap->cmdidx == CMD_echo)
  34.           msg_puts_attr((char_u *)" ", echo_attr);
  35. *** ../vim-7.3.476/src/version.c    2012-03-23 14:16:19.000000000 +0100
  36. --- src/version.c    2012-03-23 15:13:58.000000000 +0100
  37. ***************
  38. *** 716,717 ****
  39. --- 716,719 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     477,
  43.   /**/
  44.  
  45. -- 
  46. "Marriage is when a man and woman become as one; the trouble starts
  47. when they try to decide which one"
  48.  
  49.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  50. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  51. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  52.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  53.