Merge branch 'master' of git://factorcode.org/git/factor

db4
Slava Pestov 2009-03-29 22:46:40 -05:00
commit 176983e1a3
2 changed files with 8 additions and 7 deletions

View File

@ -182,7 +182,7 @@ link-no-follow? off
[ "<table><tr><td>foo|bar</td></tr></table>" ] [ "|foo\\|bar|" convert-farkup ] unit-test
[ "<p></p>" ] [ "\\" convert-farkup ] unit-test
! [ "<p>[abc]</p>" ] [ "[abc]" convert-farkup ] unit-test
[ "<p>[abc]</p>" ] [ "[abc]" convert-farkup ] unit-test
: random-markup ( -- string )
10 [

View File

@ -121,7 +121,7 @@ DEFER: (parse-paragraph)
] if
] if ;
: take-until ( state delimiter -- string/f state' )
: take-until ( state delimiter -- string state'/f )
V{ } clone (take-until) ;
: count= ( string -- n )
@ -186,11 +186,12 @@ DEFER: (parse-paragraph)
: parse-code ( state -- state' item )
dup 1 look CHAR: [ =
[ unclip-slice make-paragraph ] [
"{" take-until
[ rest ] dip
"}]" take-until
[ code boa ] dip swap
[ take-line make-paragraph ] [
dup "{" take-until [
[ nip rest ] dip
"}]" take-until
[ code boa ] dip swap
] [ drop take-line make-paragraph ] if*
] if ;
: parse-item ( state -- state' item )