Ruby GTK3移行後のメインリポジトリ
修訂 | 1ef137a74e1c2d24f5261dd1a8f143a956ccecbf (tree) |
---|---|
時間 | 2015-08-07 22:33:46 |
作者 | Shyouzou Sugitani <shy@user...> |
Commiter | Shyouzou Sugitani |
Prepare for Release of 4.500.1
@@ -1,3 +1,7 @@ | ||
1 | +Fri August 7 2015 Shyouzou Sugitani <shy@users.osdn.me> | |
2 | + * バージョン4.500.1リリース. | |
3 | + * 移植が完了していない文5互換モジュールが動作しないようにした. | |
4 | + | |
1 | 5 | Wed August 5 2015 Shyouzou Sugitani <shy@users.osdn.me> |
2 | 6 | * 偽栞互換モジュールを更新した. |
3 | 7 |
@@ -12,6 +16,9 @@ Sun August 2 2015 Shyouzou Sugitani <shy@users.osdn.me> | ||
12 | 16 | Sat August 1 2015 Shyouzou Sugitani <shy@users.osdn.me> |
13 | 17 | * 偽栞互換モジュールを追加した. |
14 | 18 | |
19 | +Mon July 27 2015 Shyouzou Sugitani <shy@users.osdn.me> | |
20 | + * 文5互換モジュールを追加した. | |
21 | + | |
15 | 22 | Sat July 25 2015 Shyouzou Sugitani <shy@users.osdn.me> |
16 | 23 | * 非推奨のGtk+シンボルを使用しないようにした. |
17 | 24 |
@@ -251,6 +251,7 @@ module Aya5 | ||
251 | 251 | end |
252 | 252 | |
253 | 253 | def find(top_dir, dll_name) |
254 | + return 0 ### FIXME | |
254 | 255 | result = 0 |
255 | 256 | version = Aya5.check_version(top_dir, dll_name) |
256 | 257 | if version == 5 |
@@ -1586,7 +1587,7 @@ module Aya5 | ||
1586 | 1587 | local_namespace = AyaNamespace.new(@dic.aya, namespace) |
1587 | 1588 | result_of_inner_func = evaluate(local_namespace, |
1588 | 1589 | inner_func, -1, 1) ## FIXME |
1589 | - if result_of_inner_func and not result_of_inner_func.empty? | |
1590 | + if result_of_inner_func | |
1590 | 1591 | alternatives << result_of_inner_func |
1591 | 1592 | end |
1592 | 1593 | elsif line[0] == TYPE_SUBSTITUTION |
@@ -1650,7 +1651,7 @@ module Aya5 | ||
1650 | 1651 | result_of_inner_block = evaluate(local_namespace, |
1651 | 1652 | inner_block, |
1652 | 1653 | -1, 1) ## FIXME |
1653 | - if result_of_inner_block and not result_of_inner_block.empty? | |
1654 | + if result_of_inner_block | |
1654 | 1655 | alternatives << result_of_inner_block |
1655 | 1656 | end |
1656 | 1657 | break |
@@ -1664,7 +1665,7 @@ module Aya5 | ||
1664 | 1665 | local_namespace = AyaNamespace.new(@dic.aya, namespace) |
1665 | 1666 | result_of_inner_block = evaluate(local_namespace, |
1666 | 1667 | inner_block, -1, 1) ## FIXME |
1667 | - if result_of_inner_block and not result_of_inner_block.empty? | |
1668 | + if result_of_inner_block | |
1668 | 1669 | alternatives << result_of_inner_block |
1669 | 1670 | end |
1670 | 1671 | if @status == CODE_RETURN |
@@ -1689,7 +1690,7 @@ module Aya5 | ||
1689 | 1690 | local_namespace = AyaNamespace.new(@dic.aya, namespace) |
1690 | 1691 | result_of_inner_block = evaluate(local_namespace, |
1691 | 1692 | inner_block, -1, 1) ## FIXME |
1692 | - if result_of_inner_block and not result_of_inner_block.empty? | |
1693 | + if result_of_inner_block | |
1693 | 1694 | alternatives << result_of_inner_block |
1694 | 1695 | end |
1695 | 1696 | if @status == CODE_RETURN |
@@ -1715,7 +1716,7 @@ module Aya5 | ||
1715 | 1716 | local_namespace = AyaNamespace.new(@dic.aya, namespace) |
1716 | 1717 | result_of_inner_block = evaluate(local_namespace, |
1717 | 1718 | inner_block, index, 1) ## FIXME |
1718 | - if result_of_inner_block and not result_of_inner_block.empty? | |
1719 | + if result_of_inner_block | |
1719 | 1720 | alternatives << result_of_inner_block |
1720 | 1721 | end |
1721 | 1722 | elsif line[0] == TYPE_CASE |
@@ -1735,7 +1736,7 @@ module Aya5 | ||
1735 | 1736 | if value_min <= left and left <= value_max |
1736 | 1737 | result_of_inner_block = evaluate( |
1737 | 1738 | local_namespace, inner_block, -1, 1) ## FIXME |
1738 | - if result_of_inner_block and not result_of_inner_block.empty? | |
1739 | + if result_of_inner_block | |
1739 | 1740 | alternatives << result_of_inner_block |
1740 | 1741 | break_flag = true |
1741 | 1742 | break |
@@ -1747,13 +1748,13 @@ module Aya5 | ||
1747 | 1748 | end |
1748 | 1749 | end |
1749 | 1750 | if not break_flag |
1750 | - if default_result and not default_result.empty? | |
1751 | + if default_result | |
1751 | 1752 | alternatives << default_result |
1752 | 1753 | end |
1753 | 1754 | end |
1754 | 1755 | elsif line[0] == TYPE_STATEMENT |
1755 | 1756 | result_of_func = evaluate_statement(namespace, line, 0) |
1756 | - if result_of_func and not result_of_func.empty? | |
1757 | + if result_of_func | |
1757 | 1758 | alternatives << result_of_func |
1758 | 1759 | end |
1759 | 1760 | elsif line[0] == TYPE_CONDITION |
@@ -1883,7 +1884,7 @@ module Aya5 | ||
1883 | 1884 | end |
1884 | 1885 | else ## FIXME |
1885 | 1886 | result_of_eval = evaluate_token(namespace, line) |
1886 | - if result_of_eval and not result_of_eval.empty? | |
1887 | + if result_of_eval | |
1887 | 1888 | alternatives << result_of_eval |
1888 | 1889 | end |
1889 | 1890 | end |