blob: 59cb90c957144c9f78cfe3039c6f0ea16b4b00d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
--- Yap-5.1.1.orig/misc/tkyap 2006-02-21 02:18:08.000000000 +1300
+++ Yap-5.1.1/misc/tkyap 2006-04-20 19:28:52.000000000 +1200
@@ -33,19 +33,10 @@
#option add "*message*Font" $TextFont
#option add "*list*Font" $TextFont
-if {[file exists /vmlinuz]} {
- set TextFont "*6x10*"
- if {[file exists /home/luis/Yap94/linux]} {
- set homeyap /home/luis/Yap94/linux
- } else {
- set homeyap .
- }
- set PrologCommand "$homeyap/yap $homeyap/startup -c localhost $service $YapOptions"
- set SolarisBug 0
-} else {
- set PrologCommand "ny -h8000 -s1000"
- set SolarisBug 1
-}
+set TextFont "*6x10*"
+
+set PrologCommand "yap -c localhost $service $YapOptions"
+set SolarisBug 0
|