[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [OpenVerse] Cruise's Workshop - Bugs Bugs Bugs (just add lag)
On Tuesday, October 23, 2001 10:41, you wrote:
> I never quite got the hang of using patch.. please tell me where to cut and
> what to paste and the command to run :)
Run this file through patch.
cd openverse-development-directory-that-you-use
patch -p0 < openverse.patch
(play with the -p value until it works: 0 means strip no directories from
those in the diff)
I shouldn't have sent the patch pasted into my letter, because tab damage and
newlines screw it all up. I should have thought of that... my patch is
attached. It changes only four lines. Try reading it in a text editor first.
--
Andy Goth | unununium@openverse.org | http://null.cc.uic.edu/~andy/
diff -ur openverse.old/OpenVerse.tcl openverse.new/OpenVerse.tcl
--- openverse.old/OpenVerse.tcl Wed Oct 24 00:49:38 2001
+++ openverse.new/OpenVerse.tcl Tue Oct 23 22:04:05 2001
@@ -291,6 +291,9 @@
if {![file exists "$MV(homedir)/panels/NotFun"]} {
file copy "$MV(libbase)/panels/NotFun" "$MV(homedir)/panels"
}
+ if {![file exists "$MV(homedir)/panels/Pro"]} {
+ file copy "$MV(libbase)/panels/Pro" "$MV(homedir)/panels"
+ }
if {![file exists $MV(homedir)/plugins]} {
file mkdir $MV(homedir)/plugins
file mkdir $MV(homedir)/plugins/Query
diff -ur openverse.old/panels/Pro openverse.new/panels/Pro
--- openverse.old/panels/Pro Wed Oct 24 00:49:38 2001
+++ openverse.new/panels/Pro Tue Oct 23 22:07:25 2001
@@ -46,7 +46,6 @@
menu .menu.main.m.ov.m
.menu.main.m.ov.m add cascade -label [Trns passageways] -menu .menu.main.m.ov.m.m
menu .menu.main.m.ov.m.m
-.menu.main.m.ov.m add command -label [Trns text_chat] -command ToggleText
.menu.main.m.ov.m add command -label [Trns setup] -command Setup
.menu.main.m.ov.m add checkbutton -label [Trns sound] -variable MV(bell)
.menu.main.m.ov.m add separator