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

do talk too much?

 [1/7] from: patrick:philipot:laposte at: 29-Jun 15:26


Hi List Using the last version (REBOL/View 1.2.10.3.1 30-May-2003), I noticed something new with do. Some text of the rebol header is displayed. For example, with the following script (mini.r): Rebol [title: test date: 29-6-2003] print "done"
>> do %mini.r
Script: test (29-Jun-2003) done Regards Patrick

 [2/7] from: greggirwin:mindspring at: 29-Jun-2003 8:45


Nice catch Patrick! I hadn't tested anything using DO under it yet I guess. Have you sent it to feeback? -- Gregg

 [3/7] from: patrick:philipot:laposte at: 29-Jun 18:03


Yes, (Feedback Id #36t856320) Patrick

 [4/7] from: antonr:iinet:au at: 30-Jun-2003 11:42


I think that feature was enabled purposely for this beta. Anton.

 [5/7] from: g::santilli::tiscalinet::it at: 30-Jun-2003 12:26


Hi Patrick, On Saturday, June 29, 2024, 3:26:27 PM, you wrote:
>>> do %mini.r
p> Script: test (29-Jun-2003) p> done Actually, IIRC, this has always been present, and is triggered by SYSTEM/OPTIONS/QUIET. Indeed, REBOL/View 1.2.8.3.1 3-Aug-2002 [...]
>> system/options/quiet
== true REBOL/View 1.2.10.3.1 30-May-2003 [...]
>> system/options/quiet
== false And: REBOL/View 1.2.8.3.1 3-Aug-2002 [...]
>> system/options/quiet: no
== false
>> write %test.r {REBOL [Title: "Script title"] print "Hello"} >> do %test.r
Script: "Script title" (none) Hello The only difference is that /View has always been QUIET by default, while this beta version isn't. /Core never was. You can make /View 1.2.10 quiet by calling it with the -q flag. Regards, Gabriele. -- Gabriele Santilli <[g--santilli--tiscalinet--it]> -- REBOL Programmer Amigan -- AGI L'Aquila -- REB: http://web.tiscali.it/rebol/index.r

 [6/7] from: Al:Bri:xtra at: 2-Jul-2003 18:50


I think this feature has always been present, as I've been taking advantage of it with my %Values.r script which automatically loads my Values directory of scripts into Rebol. Andrew J Martin ICQ: 26227169 http://www.rebol.it/Valley/ http://Valley.150m.com/

 [7/7] from: nitsch-lists:netcologne at: 2-Jul-2003 10:15


Showing the script-title before doing it depends on system/options/quiet =2E Volker Am Mittwoch, 2. Juli 2003 08:50 schrieb A J Martin: