summaryrefslogtreecommitdiff
path: root/lang/gauche
diff options
context:
space:
mode:
authorNorikatsu Shigemura <nork@FreeBSD.org>2002-10-27 06:09:05 +0000
committerNorikatsu Shigemura <nork@FreeBSD.org>2002-10-27 06:09:05 +0000
commit3d6a4fd46e524bffebfb8401d30defa1217ee190 (patch)
tree696eb1bc90575014460e652927c67227a3d97c02 /lang/gauche
parentRemove pike after repo-copy pike to pike70, (diff)
Fix function info doesn't work.
PR: ports/44129 Submitted by: Kimura Fuyuki <fuyuki@hadaly.org> Approved by: maintainer
Notes
Notes: svn path=/head/; revision=68911
Diffstat (limited to 'lang/gauche')
-rw-r--r--lang/gauche/files/patch-lib-gauche-interactive-info.scm14
1 files changed, 14 insertions, 0 deletions
diff --git a/lang/gauche/files/patch-lib-gauche-interactive-info.scm b/lang/gauche/files/patch-lib-gauche-interactive-info.scm
new file mode 100644
index 000000000000..450001270884
--- /dev/null
+++ b/lang/gauche/files/patch-lib-gauche-interactive-info.scm
@@ -0,0 +1,14 @@
+--- lib/gauche/interactive/info.scm.orig Fri Jul 12 15:57:01 2002
++++ lib/gauche/interactive/info.scm Thu Oct 24 11:28:44 2002
+@@ -61,9 +61,9 @@
+ (else '())))
+ (instpath
+ (let1 pathcomps (string-split (gauche-library-directory) #\/)
+- (if (> (length pathcomps) 3)
++ (if (> (length pathcomps) 4)
+ (list (apply build-path
+- (append (drop-right pathcomps 3) '("info"))))
++ (append (drop-right pathcomps 4) '("info"))))
+ '())))
+ (in-place (list "../doc")))
+ (append syspath instpath in-place)))