about summary refs log tree commit diff stats
path: root/code
diff options
context:
space:
mode:
Diffstat (limited to 'code')
-rw-r--r--code/fm.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/code/fm.rb b/code/fm.rb
index bda90196..3f1f442f 100644
--- a/code/fm.rb
+++ b/code/fm.rb
@@ -77,8 +77,10 @@ module Fm
 		$VERBOSE = old_verbose_level
 	end
 
-	def dump_pwd_to_stderr()
-		STDERR.puts( Fm.pwd.path )
+	def dump_pwd_to_3()
+		three = File.open(3, 'a')
+		three.puts( Fm.pwd.path )
+		three.close
 	end
 
 	def boot_up(pwd=nil)