To: vim-dev@vim.org Subject: Patch 6.1.154 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 6.1.154 Problem: DJGPP: "vim -h" leaves the cursor in a wrong position. Solution: Don't position the cursor using uninitilized variables. (Jim Dunleavy) Files: src/os_msdos.c *** ../vim61.153/src/os_msdos.c Wed May 15 22:00:04 2002 --- src/os_msdos.c Wed Aug 7 21:03:39 2002 *************** *** 139,146 **** static void set_sys_cursor(void) { ! myflush(); ! gotoxy(S_iCurrentColumn + 1, S_iCurrentRow + 1); } static void --- 139,149 ---- static void set_sys_cursor(void) { ! if (term_console && full_screen) ! { ! myflush(); ! gotoxy(S_iCurrentColumn + 1, S_iCurrentRow + 1); ! } } static void *** ../vim61.153/src/version.c Tue Aug 13 21:35:32 2002 --- src/version.c Sun Aug 18 15:47:14 2002 *************** *** 608,609 **** --- 608,611 ---- { /* Add new patch number below this line */ + /**/ + 154, /**/ -- hundred-and-one symptoms of being an internet addict: 229. You spend so much time thinking what to add on this list. /// Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net \\\ /// Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim \\\ \\\ Project leader for A-A-P -- http://www.a-a-p.org /// \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///