Hi, If you get this error at parse time (as opposed to in a :warnings list), it means that you made a word that's supposed to be optimized (like an I/O word, sequence word, etc) fail to have a static stack effect and therefore not optimized.
If you wrote a combinator, make sure it is declared inline so that the quotation that is passed to it is known to the compiler. In this case, it looks like encode-char-mb should be declared inline. Slava On Sat, Feb 28, 2009 at 1:21 AM, Jong-Hyouk Yun <[email protected]> wrote: > Hi, > > I'm working on "io.encodings.korean" support Johab encoding and > refactoring "cp949", "johab" => encode-char/decode-char's common > patterns. > > here is my personel github: http://github.com/ageldama/factor/tree/master > > I want remove duplicated codes in my cp949/johab encodings and no need > to load vocab twice. > > > [ageld...@file ~]$ factor/factor > ( scratchpad ) USE: io.encodings.korean > Loading resource:basis/io/encodings/korean/korean.factor > Loading resource:basis/io/encodings/asian/asian.factor > Loading resource:basis/io/encodings/asian/asian-docs.factor > :warnings - print 545 semantic warnings. > 1: USE: io.encodings.korean > ^ > In word: encode-char-mb > Got a computed value where a literal quotation was expected > > The following restarts are available: > > :1 Load resource:basis/io/encodings/korean/korean.factor again > > Type :help for debugging help. > ( scratchpad ) USE: io.encodings.korean > Loading resource:basis/io/encodings/korean/korean.factor > Loading resource:basis/io/encodings/korean/korean-docs.factor > :warnings - print 9 semantic warnings. > ( scratchpad ) [ageld...@file ~]$ cd factor > [ageld...@file factor]$ git log|head -6 > commit fc1199358c75167e880294a965ad09526664d091 > Author: Yun, Jonghyouk <[email protected]> > Date: Sat Feb 28 15:57:14 2009 +0900 > > io.encodings.korean cp949, johab encode-char/decode-char refactoring... > > [ageld...@file factor]$ uname -a > Linux ************* 2.6.18-8.el5 #1 SMP Thu Mar 15 19:46:53 EDT 2007 > x86_64 x86_64 x86_64 GNU/Linux > > > Thanks. > > ------------------------------------------------------------------------------ > Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA > -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise > -Strategies to boost innovation and cut costs with open source participation > -Receive a $600 discount off the registration fee with the source code: SFAD > http://p.sf.net/sfu/XcvMzF8H > _______________________________________________ > Factor-talk mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/factor-talk > ------------------------------------------------------------------------------ Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise -Strategies to boost innovation and cut costs with open source participation -Receive a $600 discount off the registration fee with the source code: SFAD http://p.sf.net/sfu/XcvMzF8H _______________________________________________ Factor-talk mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/factor-talk
