summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Walker <ka0ttic@gentoo.org>2005-08-14 11:25:03 +0000
committerAaron Walker <ka0ttic@gentoo.org>2005-08-14 11:25:03 +0000
commitf65bb7fe3ade2556fd373ec6d1f91373bcb113f5 (patch)
treed7e4f120b3dff235c2c579ae8043c2574dba0a67 /sys-apps/most/files
parentFixed dependencies for USE=noauthcram, see bug 83415. (diff)
downloadhistorical-f65bb7fe3ade2556fd373ec6d1f91373bcb113f5.tar.gz
historical-f65bb7fe3ade2556fd373ec6d1f91373bcb113f5.tar.bz2
historical-f65bb7fe3ade2556fd373ec6d1f91373bcb113f5.zip
Revision bump; added patch to fix the 'g' (goto line) command. Also removed src_compile() completely since the MOST_SYSINIT defaults to what we were using previously (/etc/most.conf). Also updated the dodoc list to include the sample most.rc.
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'sys-apps/most/files')
-rw-r--r--sys-apps/most/files/digest-most-4.10.2-r1 (renamed from sys-apps/most/files/digest-most-4.10.2)0
-rw-r--r--sys-apps/most/files/most-4.10.2-fix-goto-line.diff12
2 files changed, 12 insertions, 0 deletions
diff --git a/sys-apps/most/files/digest-most-4.10.2 b/sys-apps/most/files/digest-most-4.10.2-r1
index a45c3ae04430..a45c3ae04430 100644
--- a/sys-apps/most/files/digest-most-4.10.2
+++ b/sys-apps/most/files/digest-most-4.10.2-r1
diff --git a/sys-apps/most/files/most-4.10.2-fix-goto-line.diff b/sys-apps/most/files/most-4.10.2-fix-goto-line.diff
new file mode 100644
index 000000000000..3b9272c491b6
--- /dev/null
+++ b/sys-apps/most/files/most-4.10.2-fix-goto-line.diff
@@ -0,0 +1,12 @@
+diff --exclude='*~' --exclude='.*' -I '$Id:' -urN most-4.10.2.orig/src/keym.c most-4.10.2/src/keym.c
+--- most-4.10.2.orig/src/keym.c 2005-08-13 23:11:23.000000000 -0400
++++ most-4.10.2/src/keym.c 2005-08-13 23:37:11.000000000 -0400
+@@ -199,7 +199,7 @@
+ {
+ Most_Mini_Buf[0] = 0;
+
+- if (!most_read_from_minibuffer(prompt, (char *) Most_Mini_Buf, MOST_MINI_BUF_LEN))
++ if (most_read_from_minibuffer(prompt, (char *) Most_Mini_Buf, MOST_MINI_BUF_LEN))
+ return -1;
+
+ if (1 != sscanf((char *) Most_Mini_Buf, "%d", n))