From f414323d1db0795119303b4b4882c8653f636fd1 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sun, 16 Aug 2015 10:57:40 -0700 Subject: [PATCH] prettyprint: change -> to => for newparser and -> cocoa syntax. Alternatives are possible. --- basis/prettyprint/prettyprint.factor | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/basis/prettyprint/prettyprint.factor b/basis/prettyprint/prettyprint.factor index b5b8ba2e67..d02144a600 100644 --- a/basis/prettyprint/prettyprint.factor +++ b/basis/prettyprint/prettyprint.factor @@ -54,9 +54,9 @@ IN: prettyprint +SYMBOL: => -\ -> +\ => { { foreground COLOR: white } { background COLOR: black } } "word-style" set-word-prop @@ -76,7 +76,7 @@ SYMBOL: -> ] [ ] make ; : remove-breakpoints ( quot pos -- quot' ) - 1 + short cut [ (remove-breakpoints) ] bi@ [ -> ] glue ; + 1 + short cut [ (remove-breakpoints) ] bi@ [ => ] glue ; : optimized-frame? ( triple -- ? ) second word? ;