[MOO-Cows] Re: [encore] line number in callers()

2004-12-06 Thread H. Peter Anvin
Sean Davis wrote:
Yes. In fact, it surprises me very much that I can load a core on a MSB LP64
machine (UltraSPARC in this case) and have it work just fine. Then again,
UltraSPARC is not nearly as picky as Alpha when it comes to unaligned memory
access.
It's exactly as picky, but your SPARC OS (Solaris?) probably does 
unaligned trap handling in software, whereas your Alpha OS (Tru64?) doesn't.

-hpa
#
This message is sent to you because you are subscribed to
 the mailing list [EMAIL PROTECTED].
To unsubscribe, E-mail to: [EMAIL PROTECTED]
To switch to the DIGEST mode, E-mail to [EMAIL PROTECTED]
To switch to the INDEX mode, E-mail to [EMAIL PROTECTED]
Send administrative queries to  [EMAIL PROTECTED]


[MOO-Cows] Re: Operators: concatenate, append, augment

2004-05-01 Thread H. Peter Anvin
Daniel Jung wrote:
Hi
===
Operators: concatenate, append, augment
===
In MOO code, I have to
   string = tostr(string, otherstring);
   list = setadd(list, element);
   number = number + othernumber;
   number = number + 1;
I'm tired of that. I'd wish I rather could
   string .= otherstring;
   list .= element;
   number += othernumber;
   number++;
setadd() is different from the standard way to concatenate a list; 
setadd() keeps duplicates from occurring.  To just add an element to a 
list, do:

list = [EMAIL PROTECTED], element};
-hpa
#
This message is sent to you because you are subscribed to
 the mailing list [EMAIL PROTECTED].
To unsubscribe, E-mail to: [EMAIL PROTECTED]
To switch to the DIGEST mode, E-mail to [EMAIL PROTECTED]
To switch to the INDEX mode, E-mail to [EMAIL PROTECTED]
Send administrative queries to  [EMAIL PROTECTED]


[MOO-Cows] Re: [Lambdamoo-server] Messages 18 and 19 on *CGroup

2003-03-16 Thread H. Peter Anvin
Luke-Jr wrote:

Do you have a suggestion how to add curly braces without breaking
backward compatibility? I suspect anything you could think of would
conflict with LISTs quite a bit.
It might be possible to deal with it by using grammar context.  It might 
still be hard to read, however.

	-hpa



#
This message is sent to you because you are subscribed to
 the mailing list [EMAIL PROTECTED].
To unsubscribe, E-mail to: [EMAIL PROTECTED]
To switch to the DIGEST mode, E-mail to [EMAIL PROTECTED]
To switch to the INDEX mode, E-mail to [EMAIL PROTECTED]
Send administrative queries to  [EMAIL PROTECTED]