summaryrefslogtreecommitdiff
path: root/www/lynx/patches/patch-bf
diff options
context:
space:
mode:
Diffstat (limited to 'www/lynx/patches/patch-bf')
-rw-r--r--www/lynx/patches/patch-bf29
1 files changed, 0 insertions, 29 deletions
diff --git a/www/lynx/patches/patch-bf b/www/lynx/patches/patch-bf
deleted file mode 100644
index bebcdeeb190..00000000000
--- a/www/lynx/patches/patch-bf
+++ /dev/null
@@ -1,29 +0,0 @@
-$NetBSD: patch-bf,v 1.1 2006/05/29 16:58:18 drochner Exp $
-
---- src/LYCurses.h.orig 2004-01-28 20:30:38.000000000 +0100
-+++ src/LYCurses.h
-@@ -365,6 +365,24 @@ extern long LYgetattrs PARAMS((WINDOW *w
- extern int LYlines; /* replaces LINES */
- extern int LYcols; /* replaces COLS */
-
-+/*
-+ * The scrollbar, if used, occupies the rightmost column.
-+ */
-+#ifdef USE_SCROLLBAR
-+#define LYbarWidth (LYShowScrollbar ? 1 : 0)
-+#else
-+#define LYbarWidth 0
-+#endif
-+
-+/*
-+ * Usable limits for display:
-+ */
-+#if defined(FANCY_CURSES) || defined(USE_SLANG)
-+#define LYcolLimit (LYcols - LYbarWidth)
-+#else
-+#define LYcolLimit (LYcols - 1)
-+#endif
-+
- #ifdef USE_CURSES_PADS
- extern WINDOW *LYwin;
- extern int LYshiftWin;