On 30/12/08 14:49, KLEIN Stéphane wrote: [...] > This my vim configuration : > $ gvim --version > VIM - Vi IMproved 7.1 (2007 May 12, compiled Jul 21 2008 13:37:54) > Patches inclus : 1-314 > Compilé par [email protected] > Énorme version avec interface graphique GTK2. [...] > > libfreetype - version: 2.3.7-2ubuntu1 > fontconfig - version : 2.6.0-1ubuntu4 > > I've also tested ProggyTiny 12 in ttf version. > > Regards, > Stephane
You may want to compile your own 7.2.075, see http://users.skynet.be/antoine.mechelynck/vim/compunix.htm Note that patch 7.2.072 will not apply cleanly as published, you can replace it by the attached version. It concerns only the sniff interface anyway. I'm not saying that upgrading your Vim version will necessarily cure your problems with the Proggy font, but even if it doesn't, it will fix other known bugs. Best regards, Tony. -- WOMAN: Dennis, there's some lovely filth down here. Oh -- how d'you do? ARTHUR: How do you do, good lady. I am Arthur, King of the Britons. Who's castle is that? WOMAN: King of the who? The Quest for the Holy Grail (Monty Python) --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
To: [email protected] Subject: Patch 7.2.072 (extra) Fcc: outbox From: Bram Moolenaar <[email protected]> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.072 (extra) Problem: Compiler warning in Sniff code. Solution: Use return value of pipe(). (Dominique Pelle) Files: src/if_sniff.c *** ../vim-7.2.071/src/if_sniff.c Sat Nov 15 14:11:10 2008 --- src/if_sniff.c Sat Dec 6 14:01:57 2008 *************** *** 2,9 **** * * if_sniff.c Interface between Vim and SNiFF+ * - * $Id: if_sniff.c,v 1.4 2006/03/06 23:13:51 vimboss Exp $ - * * See README.txt for an overview of the Vim source code. */ --- 2,7 ---- *************** *** 716,723 **** #else /* UNIX Version of the Code */ int ToSniffEmacs[2], FromSniffEmacs[2]; ! pipe(ToSniffEmacs); ! pipe(FromSniffEmacs); /* fork */ if ((sniffemacs_pid=fork()) == 0) --- 714,723 ---- #else /* UNIX Version of the Code */ int ToSniffEmacs[2], FromSniffEmacs[2]; ! if (pipe(ToSniffEmacs) != 0) ! return 1; ! if (pipe(FromSniffEmacs) != 0) ! return 1; /* fork */ if ((sniffemacs_pid=fork()) == 0) *** ../vim-7.2.071/src/version.c Wed Dec 24 12:20:10 2008 --- src/version.c Wed Dec 24 12:42:13 2008 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 72, /**/ -- SIGIRO -- irony detected (iron core dumped) /// Bram Moolenaar -- [email protected] -- 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 ///
