Mercurial > vim
comparison src/if_py_both.h @ 4359:6d45e6f97415 v7.3.928
updated for version 7.3.928
Problem: Can't build with strict C compiler.
Solution: Move declaration to start of block. (Taro Muraoka)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Mon, 06 May 2013 06:26:15 +0200 |
parents | 04736b4030ec |
children | 8ec7323f417d |
comparison
equal
deleted
inserted
replaced
4358:cf1d93a3914a | 4359:6d45e6f97415 |
---|---|
1519 { | 1519 { |
1520 char_u *key; | 1520 char_u *key; |
1521 int flags; | 1521 int flags; |
1522 long numval; | 1522 long numval; |
1523 char_u *stringval; | 1523 char_u *stringval; |
1524 DICTKEY_DECL | |
1524 | 1525 |
1525 if (this->Check(this->from)) | 1526 if (this->Check(this->from)) |
1526 return NULL; | 1527 return NULL; |
1527 | |
1528 DICTKEY_DECL | |
1529 | 1528 |
1530 DICTKEY_GET_NOTEMPTY(NULL) | 1529 DICTKEY_GET_NOTEMPTY(NULL) |
1531 | 1530 |
1532 flags = get_option_value_strict(key, &numval, &stringval, | 1531 flags = get_option_value_strict(key, &numval, &stringval, |
1533 this->opt_type, this->from); | 1532 this->opt_type, this->from); |
1614 { | 1613 { |
1615 char_u *key; | 1614 char_u *key; |
1616 int flags; | 1615 int flags; |
1617 int opt_flags; | 1616 int opt_flags; |
1618 int r = 0; | 1617 int r = 0; |
1618 DICTKEY_DECL | |
1619 | 1619 |
1620 if (this->Check(this->from)) | 1620 if (this->Check(this->from)) |
1621 return -1; | 1621 return -1; |
1622 | |
1623 DICTKEY_DECL | |
1624 | 1622 |
1625 DICTKEY_GET_NOTEMPTY(-1) | 1623 DICTKEY_GET_NOTEMPTY(-1) |
1626 | 1624 |
1627 flags = get_option_value_strict(key, NULL, NULL, | 1625 flags = get_option_value_strict(key, NULL, NULL, |
1628 this->opt_type, this->from); | 1626 this->opt_type, this->from); |