|
Karsten Hopp |
1c0c43 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
1c0c43 |
Subject: Patch 7.3.921
|
|
Karsten Hopp |
1c0c43 |
Fcc: outbox
|
|
Karsten Hopp |
1c0c43 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
1c0c43 |
Mime-Version: 1.0
|
|
Karsten Hopp |
1c0c43 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
1c0c43 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
1c0c43 |
------------
|
|
Karsten Hopp |
1c0c43 |
|
|
Karsten Hopp |
1c0c43 |
Patch 7.3.921 (after 7.3.697)
|
|
Karsten Hopp |
1c0c43 |
Problem: Trying to create a fontset handle when 'guifontset' is not set.
|
|
Karsten Hopp |
1c0c43 |
Solution: Add curly braces around the code block. (Max Kirillov)
|
|
Karsten Hopp |
1c0c43 |
Files: src/syntax.c
|
|
Karsten Hopp |
1c0c43 |
|
|
Karsten Hopp |
1c0c43 |
|
|
Karsten Hopp |
1c0c43 |
*** ../vim-7.3.920/src/syntax.c 2013-01-23 15:53:08.000000000 +0100
|
|
Karsten Hopp |
1c0c43 |
--- src/syntax.c 2013-05-02 03:51:38.000000000 +0200
|
|
Karsten Hopp |
1c0c43 |
***************
|
|
Karsten Hopp |
1c0c43 |
*** 8082,8087 ****
|
|
Karsten Hopp |
1c0c43 |
--- 8082,8088 ----
|
|
Karsten Hopp |
1c0c43 |
|| do_tooltip
|
|
Karsten Hopp |
1c0c43 |
# endif
|
|
Karsten Hopp |
1c0c43 |
)
|
|
Karsten Hopp |
1c0c43 |
+ {
|
|
Karsten Hopp |
1c0c43 |
if (free_font)
|
|
Karsten Hopp |
1c0c43 |
gui_mch_free_fontset(HL_TABLE()[idx].sg_fontset);
|
|
Karsten Hopp |
1c0c43 |
HL_TABLE()[idx].sg_fontset = fontset_name2handle(arg, 0
|
|
Karsten Hopp |
1c0c43 |
***************
|
|
Karsten Hopp |
1c0c43 |
*** 8092,8097 ****
|
|
Karsten Hopp |
1c0c43 |
--- 8093,8099 ----
|
|
Karsten Hopp |
1c0c43 |
|| do_tooltip
|
|
Karsten Hopp |
1c0c43 |
# endif
|
|
Karsten Hopp |
1c0c43 |
);
|
|
Karsten Hopp |
1c0c43 |
+ }
|
|
Karsten Hopp |
1c0c43 |
if (HL_TABLE()[idx].sg_fontset != NOFONTSET)
|
|
Karsten Hopp |
1c0c43 |
{
|
|
Karsten Hopp |
1c0c43 |
/* If it worked and it's the Normal group, use it as the normal
|
|
Karsten Hopp |
1c0c43 |
*** ../vim-7.3.920/src/version.c 2013-05-04 03:40:22.000000000 +0200
|
|
Karsten Hopp |
1c0c43 |
--- src/version.c 2013-05-04 03:41:40.000000000 +0200
|
|
Karsten Hopp |
1c0c43 |
***************
|
|
Karsten Hopp |
1c0c43 |
*** 730,731 ****
|
|
Karsten Hopp |
1c0c43 |
--- 730,733 ----
|
|
Karsten Hopp |
1c0c43 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
1c0c43 |
+ /**/
|
|
Karsten Hopp |
1c0c43 |
+ 921,
|
|
Karsten Hopp |
1c0c43 |
/**/
|
|
Karsten Hopp |
1c0c43 |
|
|
Karsten Hopp |
1c0c43 |
--
|
|
Karsten Hopp |
1c0c43 |
Edison's greatest achievement came in 1879, when he invented the
|
|
Karsten Hopp |
1c0c43 |
electric company. Edison's design was a brilliant adaptation of the
|
|
Karsten Hopp |
1c0c43 |
simple electrical circuit: the electric company sends electricity
|
|
Karsten Hopp |
1c0c43 |
through a wire to a customer, then immediately gets the electricity
|
|
Karsten Hopp |
1c0c43 |
back through another wire
|
|
Karsten Hopp |
1c0c43 |
|
|
Karsten Hopp |
1c0c43 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
1c0c43 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
1c0c43 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
1c0c43 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|