Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Changing prompt without feedback

From: shannon:ains:au at: 14-Nov-2000 18:07

I'm writing a script that requires setting the prompt. Trouble is when I set the prompt rebol prints the result to the console, which is undesirable:
>> system/console/prompt: "new-prompt-> "
== "new-prompt-> " ; <- I don't want this line printed new-prompt-> I tried redirecting console output but:.. new-prompt-> echo %bitbucket.txt system/console/prompt: "new-prompt-> " == "new-prompt-> " new-prompt-> ...it doesn't work. Any suggestions? SpliFF