r1198 - in /trunk/packages/vim: debian/README debian/changelog upstream/patches/7.1.244

jamessan at users.alioth.debian.org jamessan at users.alioth.debian.org
Wed Feb 6 18:38:43 UTC 2008


Author: jamessan
Date: Wed Feb  6 18:38:39 2008
New Revision: 1198

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=1198
Log:
* New upstream patches (242 - 244), see README.gz for details.
  - 7.1.244 fixes an issue where a maximized gvim window would size itself
    larger than the size of the workspace, cutting off part of the
    command-line.  (Closes: #378311)

Added:
    trunk/packages/vim/upstream/patches/7.1.244
Modified:
    trunk/packages/vim/debian/README
    trunk/packages/vim/debian/changelog

Modified: trunk/packages/vim/debian/README
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/README?rev=1198&op=diff
==============================================================================
--- trunk/packages/vim/debian/README (original)
+++ trunk/packages/vim/debian/README Wed Feb  6 18:38:39 2008
@@ -275,3 +275,4 @@
   3093  7.1.241  focus change events not always ignored
   2262  7.1.242  "cib" doesn't work properly on "(x)"
   4475  7.1.243  (after 7.1.240) "U" doesn't work on all text in Visual mode
+  1847  7.1.244  GUI may have part of the command line cut off

Modified: trunk/packages/vim/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/changelog?rev=1198&op=diff
==============================================================================
--- trunk/packages/vim/debian/changelog (original)
+++ trunk/packages/vim/debian/changelog Wed Feb  6 18:38:39 2008
@@ -1,6 +1,9 @@
-vim (1:7.1-243+1) UNRELEASED; urgency=low
-
-  * New upstream patches (242 - 243), see README.gz for details.
+vim (1:7.1-244+1) UNRELEASED; urgency=low
+
+  * New upstream patches (242 - 244), see README.gz for details.
+    - 7.1.244 fixes an issue where a maximized gvim window would size itself
+      larger than the size of the workspace, cutting off part of the
+      command-line.  (Closes: #378311)
   * debian/control:
     - Add libacl1-dev to Build-Depends so it actually builds with acl support.
       Thanks to Lucas Nussbaum's dirty chroot builds for noticing this.

Added: trunk/packages/vim/upstream/patches/7.1.244
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.1.244?rev=1198&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.1.244 (added)
+++ trunk/packages/vim/upstream/patches/7.1.244 Wed Feb  6 18:38:39 2008
@@ -1,0 +1,58 @@
+To: vim-dev at vim.org
+Subject: Patch 7.1.244
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.1.244
+Problem:    GUI may have part of the command line cut off.
+Solution:   Don't round the number of lines up, always round down.
+	    (Tony Houghton, Scott Dillard)
+Files:	    src/gui.c
+
+
+*** ../vim-7.1.243/src/gui.c	Sat Jan 19 15:55:51 2008
+--- src/gui.c	Wed Feb  6 16:43:44 2008
+***************
+*** 1294,1304 ****
+      out_flush();
+  
+      gui.num_cols = (pixel_width - gui_get_base_width()) / gui.char_width;
+!     gui.num_rows = (pixel_height - gui_get_base_height()
+! #if !defined(FEAT_GUI_PHOTON) && !defined(FEAT_GUI_MSWIN)
+! 				    + (gui.char_height / 2)
+! #endif
+! 					) / gui.char_height;
+  
+      gui_position_components(pixel_width);
+  
+--- 1294,1300 ----
+      out_flush();
+  
+      gui.num_cols = (pixel_width - gui_get_base_width()) / gui.char_width;
+!     gui.num_rows = (pixel_height - gui_get_base_height()) / gui.char_height;
+  
+      gui_position_components(pixel_width);
+  
+*** ../vim-7.1.243/src/version.c	Wed Feb  6 14:43:50 2008
+--- src/version.c	Wed Feb  6 17:32:35 2008
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     244,
+  /**/
+
+-- 
+A consultant is a person who takes your money and annoys your employees while
+tirelessly searching for the best way to extend the consulting contract.
+				(Scott Adams - The Dilbert principle)
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///




More information about the pkg-vim-maintainers mailing list