Fix bootstrap failure
parent
169a5626d6
commit
da5539c29b
|
@ -2,14 +2,11 @@
|
||||||
|
|
||||||
- help gadget: opens 'f' initially
|
- help gadget: opens 'f' initially
|
||||||
- amd64 crash
|
- amd64 crash
|
||||||
- get factor running on mac intel
|
|
||||||
|
|
||||||
+ day after:
|
+ day after:
|
||||||
|
|
||||||
- multiple listener-run-files is broken
|
|
||||||
- roundoff is still not quite right with tracks
|
- roundoff is still not quite right with tracks
|
||||||
- httpd search tools
|
- httpd search tools
|
||||||
- docs: slice: if sequence or seq start is changed, abstraction violation
|
|
||||||
tathi: hrm. wish I knew more about OpenGL.
|
tathi: hrm. wish I knew more about OpenGL.
|
||||||
[2:45pm] tathi: Factor's text display is a bit odd sometimes, until you mouse over (or click, if there's no "live" text)
|
[2:45pm] tathi: Factor's text display is a bit odd sometimes, until you mouse over (or click, if there's no "live" text)
|
||||||
[2:46pm] tathi: but the text display code looks good as far as I can tell
|
[2:46pm] tathi: but the text display code looks good as far as I can tell
|
||||||
|
@ -27,6 +24,9 @@ tathi: hrm. wish I knew more about OpenGL.
|
||||||
|
|
||||||
+ ui:
|
+ ui:
|
||||||
|
|
||||||
|
- add some handy services:
|
||||||
|
- base conversion
|
||||||
|
- search help for selection
|
||||||
- grid slows down with 2000 lines
|
- grid slows down with 2000 lines
|
||||||
- f should be clickable
|
- f should be clickable
|
||||||
- clickable vocabs
|
- clickable vocabs
|
||||||
|
@ -53,20 +53,19 @@ tathi: hrm. wish I knew more about OpenGL.
|
||||||
- variable width word wrap
|
- variable width word wrap
|
||||||
- use models for the following:
|
- use models for the following:
|
||||||
- editor gadgets
|
- editor gadgets
|
||||||
- validator models
|
|
||||||
- search tool
|
- search tool
|
||||||
- slider needs range-model or similar
|
- slider needs range-model or similar
|
||||||
- outliner
|
|
||||||
|
|
||||||
+ compiler/ffi:
|
+ compiler/ffi:
|
||||||
|
|
||||||
|
- mac intel: struct returns from objc methods
|
||||||
|
- see if alien calls can be made faster
|
||||||
- faster sequence= for UI
|
- faster sequence= for UI
|
||||||
- fix compiled gc check
|
- fix compiled gc check
|
||||||
- there was a performance hit, investigate
|
- there was a performance hit, investigate
|
||||||
- float boxing and overflow checks need a gc check too
|
- float boxing and overflow checks need a gc check too
|
||||||
- constant branch folding
|
- constant branch folding
|
||||||
- type inference at branch merge points
|
- type inference at branch merge points
|
||||||
- free up r11, r12 as a vreg on ppc
|
|
||||||
- float= on powerpc doesn't consider nans equal
|
- float= on powerpc doesn't consider nans equal
|
||||||
- intrinsic fixnum>float float>fixnum
|
- intrinsic fixnum>float float>fixnum
|
||||||
- remove literal table
|
- remove literal table
|
||||||
|
@ -77,6 +76,8 @@ tathi: hrm. wish I knew more about OpenGL.
|
||||||
|
|
||||||
+ misc:
|
+ misc:
|
||||||
|
|
||||||
|
- mac intel: fault address not reported
|
||||||
|
- slice: if sequence or seq start is changed, abstraction violation
|
||||||
- hashed generic method dispatch
|
- hashed generic method dispatch
|
||||||
- fix this:
|
- fix this:
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
! Copyright (C) 2006 Slava Pestov.
|
! Copyright (C) 2006 Slava Pestov.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
IN: gadgets-help
|
IN: gadgets-help
|
||||||
USING: gadgets gadgets-buttons gadgets-frames gadgets-panes
|
USING: gadgets gadgets-borders gadgets-buttons gadgets-frames
|
||||||
gadgets-presentations gadgets-search gadgets-scrolling help
|
gadgets-panes gadgets-presentations gadgets-search
|
||||||
kernel models namespaces sequences ;
|
gadgets-scrolling help kernel models namespaces sequences ;
|
||||||
|
|
||||||
TUPLE: help-gadget history ;
|
TUPLE: help-gadget history ;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue