Fix a few typos

slava 2006-10-20 19:48:58 +00:00
parent 35ca5e397b
commit 28053041cb
3 changed files with 15 additions and 17 deletions

View File

@ -5,23 +5,30 @@
[ 1 2 3 4 5 6 7 8 9 10 10 10 10 10 10 10 10 10 10 11 11 11 113 [ 1 2 3 4 5 6 7 8 9 10 10 10 10 10 10 10 10 10 10 11 11 11 113
] ]
- prettier printing of hashtable literals, alists, cond, ... - prettier printing of hashtable literals, alists, cond, ...
- x11 double click
- menu should stay up if mouse button released
- roundoff is still not quite right with tracks
- fix compiled gc check
- there was a performance hit, investigate
- float boxing and overflow checks need a gc check too
- [ [ dup call ] dup call ] infer hangs
- grid slows down with 2000 lines
- convention for main help article of a module
- growable data heap
- more compact relocation info
+ ui: + ui:
- x11 double click - completion is not ideal: eg, C+e "buttons"
- menu should stay up if mouse button released
- completion is not ideal: eg, search for "buttons"
- some way of intercepting all gestures - some way of intercepting all gestures
- slider needs to be modelized - slider needs to be modelized
- better help result ranking - better help result ranking
- help search looks funny - help search looks funny
- menus should not require mouse to be held
- variable width word wrap - variable width word wrap
- graphical module manager tool - graphical module manager tool
- ui browser: show currently selected vocab & words - ui browser: show currently selected vocab & words
- auto-update browser and help when sources reload - auto-update browser and help when sources reload
- how do we refer to command shortcuts in the docs? - how do we refer to command shortcuts in the docs?
- roundoff is still not quite right with tracks
- fix top level window positioning - fix top level window positioning
- services do not launch if factor not running - services do not launch if factor not running
- editor: - editor:
@ -30,13 +37,11 @@
- more efficient multi-line inserts - more efficient multi-line inserts
- write "foo| " and put caret at | then select word element: selects - write "foo| " and put caret at | then select word element: selects
space space
- grid slows down with 2000 lines
- see if its possible to only repaint dirty regions - see if its possible to only repaint dirty regions
- structure editor - structure editor
+ module system: + module system:
- convention for main help article of a module
- track a list of assets loaded from each module's file - track a list of assets loaded from each module's file
- C types should be words - C types should be words
- TYPEDEF: float { ... } { ... } ; ==> \ float T{ c-type ... } "c-type" swp - TYPEDEF: float { ... } { ... } ; ==> \ float T{ c-type ... } "c-type" swp
@ -47,19 +52,14 @@
+ compiler/ffi: + compiler/ffi:
- more compact relocation info
- relocation should not cons at all - relocation should not cons at all
- stdcall callbacks - stdcall callbacks
- [ [ dup call ] dup call ] infer hangs
- callstack overflow when compiling mutually recursive inline words - callstack overflow when compiling mutually recursive inline words
- test what is done in the case of an invalid declaration on an inline - test what is done in the case of an invalid declaration on an inline
recursive recursive
- ppc64 backend - ppc64 backend
- arm backend - arm backend
- mac intel: struct returns from objc methods - mac intel: struct returns from objc methods
- fix compiled gc check
- there was a performance hit, investigate
- float boxing and overflow checks need a gc check too
- float= doesn't consider nans equal - float= doesn't consider nans equal
- intrinsic fixnum>float float>fixnum - intrinsic fixnum>float float>fixnum
- C functions returning structs by value - C functions returning structs by value
@ -73,7 +73,6 @@
- buffer-ptr should be an alien - buffer-ptr should be an alien
- swap nappend ==> nappend - swap nappend ==> nappend
- gdb triggers 'mutliple i/o ops on port' error - gdb triggers 'mutliple i/o ops on port' error
- growable data heap
- incremental GC - incremental GC
- UDP - UDP
- slice: if sequence or seq start is changed, abstraction violation - slice: if sequence or seq start is changed, abstraction violation

View File

@ -85,7 +85,7 @@ $terpri
" dup 0 < [" " dup 0 < ["
" drop \"negative\"" " drop \"negative\""
" ] [" " ] ["
" zero? [ \"zero\" ] [ \"negative\" ] if" " zero? [ \"zero\" ] [ \"positive\" ] if"
" ] if print ;" " ] if print ;"
} }
"The " { $link if } " word takes a boolean, a true quotation, and a false quotation, and executes one of the two quotations depending on the value of the boolean. In Factor, any object not equal to the special value " { $link f } " is considered true, while " { $link f } " is false." "The " { $link if } " word takes a boolean, a true quotation, and a false quotation, and executes one of the two quotations depending on the value of the boolean. In Factor, any object not equal to the special value " { $link f } " is considered true, while " { $link f } " is false."

View File

@ -58,10 +58,9 @@ TUPLE: no-method object generic ;
: methods* ( dispatch# word -- assoc ) : methods* ( dispatch# word -- assoc )
#! Make a class->method association, together with a #! Make a class->method association, together with a
#! default delegating method at the end. #! default delegating method at the end.
dup methods -rot empty-method object bootstrap-word dup methods -rot default-method add* ;
swap 2array add* ;
: method-alist>quot ( dispatch# word base-class -- quot ) : method-alist>quot ( dispatch# alist base-class -- quot )
bootstrap-word swap simplify-alist bootstrap-word swap simplify-alist
swapd class-predicates alist>quot ; swapd class-predicates alist>quot ;