summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2015-02-03 14:29:54 +0000
committerPacho Ramos <pacho@gentoo.org>2015-02-03 14:29:54 +0000
commit211db117773d557e9fd4cf2faa40046d9d9c61b5 (patch)
tree7906d52152e4968dc079934254411c7dec6b29a4 /games-mud/mcl/files/mcl-0.53.00-gcc42.patch
parentRemove masked for removal package (diff)
downloadgentoo-2-211db117773d557e9fd4cf2faa40046d9d9c61b5.tar.gz
gentoo-2-211db117773d557e9fd4cf2faa40046d9d9c61b5.tar.bz2
gentoo-2-211db117773d557e9fd4cf2faa40046d9d9c61b5.zip
Remove masked for removal package
Diffstat (limited to 'games-mud/mcl/files/mcl-0.53.00-gcc42.patch')
-rw-r--r--games-mud/mcl/files/mcl-0.53.00-gcc42.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/games-mud/mcl/files/mcl-0.53.00-gcc42.patch b/games-mud/mcl/files/mcl-0.53.00-gcc42.patch
deleted file mode 100644
index 553f3c0fe18f..000000000000
--- a/games-mud/mcl/files/mcl-0.53.00-gcc42.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- OutputWindow.cc
-+++ OutputWindow.cc
-@@ -229,8 +229,8 @@
- highlight.len = strlen(s);
-
- // Show on the second line rather than under status bar
-- viewpoint = scrollback >? p-width;
-- viewpoint = viewpoint <? canvas;
-+ viewpoint = scrollback > p-width ? scrollback : p-width;
-+ viewpoint = viewpoint < canvas ? viewpoint : canvas;
- status->setf("Found string '%s'", s);
- }
- }