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 / 6.1.189 < prev    next >
Encoding:
Internet Message Format  |  2002-09-22  |  1.7 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.189
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.1.189
  11. Problem:    inputdialog() doesn't work when 'c' is in 'guioptions'. (Aric
  12.         Blumer)
  13. Solution:   Fall back to the input() function in this situation.
  14. Files:        src/eval.c
  15.  
  16.  
  17. *** ../vim61.188/src/eval.c    Sat Sep  7 22:20:49 2002
  18. --- src/eval.c    Mon Sep 23 19:44:19 2002
  19. ***************
  20. *** 4805,4811 ****
  21.       VAR        retvar;
  22.   {
  23.   #if defined(FEAT_GUI_TEXTDIALOG)
  24. !     if (gui.in_use)
  25.       {
  26.       char_u    *message;
  27.       char_u    buf[NUMBUFLEN];
  28. --- 4805,4812 ----
  29.       VAR        retvar;
  30.   {
  31.   #if defined(FEAT_GUI_TEXTDIALOG)
  32. !     /* Use a GUI dialog if the GUI is running and 'c' is not in 'guioptions' */
  33. !     if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
  34.       {
  35.       char_u    *message;
  36.       char_u    buf[NUMBUFLEN];
  37. *** ../vim61.188/src/version.c    Fri Sep 20 21:47:47 2002
  38. --- src/version.c    Mon Sep 23 20:57:31 2002
  39. ***************
  40. *** 608,609 ****
  41. --- 608,611 ----
  42.   {   /* Add new patch number below this line */
  43. + /**/
  44. +     189,
  45.   /**/
  46.  
  47. -- 
  48. `The Guide says there is an art to flying,' said Ford, `or at least a
  49. knack. The knack lies in learning how to throw yourself at the ground
  50. and miss.' He smiled weakly.
  51.         -- Douglas Adams, "The Hitchhiker's Guide to the Galaxy"
  52.  
  53.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  54. ///          Creator of Vim - Vi IMproved -- http://www.vim.org          \\\
  55. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  56.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  57.