[Factor-talk] less brute force & ignorance!

2011-10-01 Thread Patrick Mc(avery
The word documentation I uploaded totals 24019 PDF pages. This might be 
handy for special searches but it's useless otherwise.

I did some special searching and now I have a much smaller document at 
486 pages. This document contains only words that also had examples in 
their documentation.

It's available here:

http://spellingbeewinnars.org/words_Examples.pdf

-Patrick

--
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security
threats, fraudulent activity, and more. Splunk takes this data and makes
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2dcopy2
___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk


Re: [Factor-talk] Cannot Run Emacs23 from Factor

2011-10-01 Thread John Benediktsson
Does this command work in a shell?

$ emacsclient --no-wait +5 /home/hokan/stwork/DuDang/DuDang.factor



On Oct 1, 2011, at 5:13 AM, Steve Tsai 蔡福安 wrote:

> When I tried to jump to definitions from the listener, I got following error 
> message:
> 
>  
> 
> Process exited with error code 1
> 
> Launch descriptor:
> 
> T{ process
> 
> { command
> 
> {
> 
> "emacsclient"
> 
> "--no-wait"
> 
> "+5"
> 
> "/home/hokan/stwork/DuDang/DuDang.factor"
> 
> }
> 
> }
> 
> { environment H{ } }
> 
> { environment-mode +append-environment+ }
> 
> { status 1 }
> 
>  
> 
> OS: Ubuntu 10.04
> 
> Editor: Emacs23
> 
>  
> 
> Can anyone guide me to solve this problem?
> 
> 
> 
> NOTICE: This email message is for the sole use of the intended recipient(s) 
> and may contain confidential and privileged information. Any unauthorized 
> review, use, disclosure or distribution is prohibited. If you are not the 
> intended recipient, please contact the sender by reply email and destroy all 
> copies of the original message.
> 
> 
> --
> All of the data generated in your IT infrastructure is seriously valuable.
> Why? It contains a definitive record of application performance, security
> threats, fraudulent activity, and more. Splunk takes this data and makes
> sense of it. IT sense. And common sense.
> http://p.sf.net/sfu/splunk-d2dcopy2
> ___
> Factor-talk mailing list
> Factor-talk@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/factor-talk
--
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security
threats, fraudulent activity, and more. Splunk takes this data and makes
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2dcopy2___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk


[Factor-talk] Cannot Run Emacs23 from Factor

2011-10-01 Thread Steve Tsai 蔡福安
When I tried to jump to definitions from the listener, I got following error 
message:

Process exited with error code 1
Launch descriptor:
T{ process
{ command
{
"emacsclient"
"--no-wait"
"+5"
"/home/hokan/stwork/DuDang/DuDang.factor"
}
}
{ environment H{ } }
{ environment-mode +append-environment+ }
{ status 1 }

OS: Ubuntu 10.04
Editor: Emacs23

Can anyone guide me to solve this problem?


 NOTICE: This email message is for the sole use of the intended recipient(s) 
and may contain confidential and privileged information. Any unauthorized 
review, use, disclosure or distribution is prohibited. If you are not the 
intended recipient, please contact the sender by reply email and destroy all 
copies of the original message.


--
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security
threats, fraudulent activity, and more. Splunk takes this data and makes
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2dcopy2___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk


Re: [Factor-talk] conditional combinator proposal

2011-10-01 Thread Samuel Tardieu
2011/10/1 Slava Pestov 

> Hi Michele,
>
> On Fri, Sep 30, 2011 at 2:53 PM, Michele Pes  wrote:
> > To achieve this, I wrote this word:
> >
> > : when-drop ( obj question-quot: ( obj -- ? ) true-quot: ( obj -- ) -- )
> >-rot dupd call swapd [ call ] [ 2drop ] if ; inline
>
> Here is a simpler version that doesn't use locals:
>
> : when-drop ( obj question-quot: ( obj -- ? ) true-quot: ( obj -- ) -- )
> [ dup ] 2dip [ drop ] if ; inline


I think you forgot "swap dip" before "[ drop ]".

My version would be:

: when-drop ( obj question-quot: ( obj -- ? ) true-quot: ( obj -- ) -- )
  [ keep and ] dip when* ; inline
--
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security
threats, fraudulent activity, and more. Splunk takes this data and makes
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2dcopy2___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk