diff options
author | 2004-07-23 02:07:35 +0000 | |
---|---|---|
committer | 2004-07-23 02:07:35 +0000 | |
commit | 8b6b119db8c23797269451e820c387d9197e9d5d (patch) | |
tree | f15091c23b1cead1a23cf22e8a96b14c03fd7089 /sys-apps/texinfo/files | |
parent | session support for gdeskcal through gnome use flag (diff) | |
download | historical-8b6b119db8c23797269451e820c387d9197e9d5d.tar.gz historical-8b6b119db8c23797269451e820c387d9197e9d5d.tar.bz2 historical-8b6b119db8c23797269451e820c387d9197e9d5d.zip |
Added patch to fix groff building against 4.7. Bug 57690.
Diffstat (limited to 'sys-apps/texinfo/files')
-rw-r--r-- | sys-apps/texinfo/files/digest-texinfo-4.7-r1 | 1 | ||||
-rw-r--r-- | sys-apps/texinfo/files/makeinfo.patch | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/sys-apps/texinfo/files/digest-texinfo-4.7-r1 b/sys-apps/texinfo/files/digest-texinfo-4.7-r1 new file mode 100644 index 000000000000..7db9f45dcad5 --- /dev/null +++ b/sys-apps/texinfo/files/digest-texinfo-4.7-r1 @@ -0,0 +1 @@ +MD5 c2fa2ef957f0d728f821ae9b2362ef4e texinfo-4.7.tar.bz2 1418717 diff --git a/sys-apps/texinfo/files/makeinfo.patch b/sys-apps/texinfo/files/makeinfo.patch new file mode 100644 index 000000000000..7658aa49ac42 --- /dev/null +++ b/sys-apps/texinfo/files/makeinfo.patch @@ -0,0 +1,19 @@ +*** makeinfo.c.~1.60.~ Sun Jun 6 07:04:12 2004 +--- makeinfo.c Fri Jul 2 08:42:28 2004 +*************** +*** 3934,3940 **** + + /* If insertion stack level changes during execution, that means a multiline + command is used inside braces or @section ... kind of commands. */ +! if (insertion_level_at_start != insertion_level) + { + line_error (_("Multiline command %c%s used improperly"), + COMMAND_PREFIX, +--- 3934,3940 ---- + + /* If insertion stack level changes during execution, that means a multiline + command is used inside braces or @section ... kind of commands. */ +! if (insertion_level_at_start != insertion_level && !executing_macro) + { + line_error (_("Multiline command %c%s used improperly"), + COMMAND_PREFIX, |