Skip to content

Commit

Permalink
core: Remove trailing whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
erg committed Oct 31, 2014
1 parent 5e16e54 commit 632ee27
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion core/classes/algebra/algebra.factor
Expand Up @@ -162,7 +162,7 @@ PREDICATE: nontrivial-anonymous-intersection < anonymous-intersection
{ [ dup anonymous-union? ] [
members>>
[ class-not normalize-class ] map
<anonymous-intersection>
<anonymous-intersection>
] }
{ [ dup anonymous-intersection? ] [
participants>>
Expand Down
2 changes: 1 addition & 1 deletion core/hashtables/hashtables.factor
Expand Up @@ -59,7 +59,7 @@ TUPLE: hashtable
!
! if empty? is f:
! - we want to store into i
!
!
! if empty? is t:
! - we want to store into j if j is not f
! - otherwise we want to store into i
Expand Down
2 changes: 1 addition & 1 deletion core/io/encodings/utf16/utf16.factor
Expand Up @@ -40,7 +40,7 @@ ERROR: missing-bom ;
[ 0b11 bitand quad-be ]
[ drop ignore ] if
] [ double-be ] if ;

M: utf16be decode-char
drop dup stream-read1 dup [ begin-utf16be ] when nip ;

Expand Down
2 changes: 1 addition & 1 deletion core/io/encodings/utf8/utf8.factor
Expand Up @@ -8,7 +8,7 @@ IN: io.encodings.utf8

SINGLETON: utf8

<PRIVATE
<PRIVATE

: starts-2? ( char -- ? )
dup [ -6 shift 0b10 number= ] when ; inline
Expand Down
4 changes: 2 additions & 2 deletions core/math/parser/parser.factor
Expand Up @@ -263,14 +263,14 @@ DEFER: @neg-digit
[ @neg-digit ]
} case ; inline

: @first-char ( i number-parse n char -- n/f )
: @first-char ( i number-parse n char -- n/f )
{
{ CHAR: - [ [ @neg-first-digit ] require-next-digit ?neg ] }
{ CHAR: + [ [ @pos-first-digit ] require-next-digit ] }
[ @pos-first-digit ]
} case ; inline

: @first-char-no-radix ( i number-parse n char -- n/f )
: @first-char-no-radix ( i number-parse n char -- n/f )
{
{ CHAR: - [ [ @neg-digit ] require-next-digit ?neg ] }
{ CHAR: + [ [ @pos-digit ] require-next-digit ] }
Expand Down
2 changes: 1 addition & 1 deletion core/slots/slots.factor
Expand Up @@ -30,7 +30,7 @@ PREDICATE: writer-method < method "writing" word-prop >boolean ;

GENERIC# reader-quot 1 ( class slot-spec -- quot )

M: object reader-quot
M: object reader-quot
nip [
dup offset>> ,
\ slot ,
Expand Down

0 comments on commit 632ee27

Please sign in to comment.