[Pharo-project] LanguageEnvironment>>#setUsePangoFlag
Hi! is that hook used by anybody? The only implementor does ^self... And that method has no changed since 2009.
And this method is funny :) because with a clean startup list it does not work: LanguageEnvironment>>initialize "LanguageEnvironment initialize" Smalltalk addToStartUpList: LanguageEnvironment after: DiskStore. Smalltalk addToStartUpList: DiskStore after: LanguageEnvironment. Even better, the language environment initialize does not need DiskStore... so Maybe we can simplify it a lot. On Mon, Jun 25, 2012 at 4:26 PM, Guillermo Polito <guillermopolito@gmail.com
wrote:
Hi!
is that hook used by anybody? The only implementor does ^self... And that method has no changed since 2009.
indeed in 1.4 it was initialize "LanguageEnvironment initialize" Smalltalk addToStartUpList: LanguageEnvironment after: FileDirectory. Smalltalk addToStartUpList: FileDirectory after: LanguageEnvironment. :) so this means that the initialize method is not invoked since some years⦠:) Probably that the language environment needs to be after FileDirectory because it should load some files. Stef On Jun 25, 2012, at 5:16 PM, Guillermo Polito wrote:
And this method is funny :) because with a clean startup list it does not work:
LanguageEnvironment>>initialize "LanguageEnvironment initialize"
Smalltalk addToStartUpList: LanguageEnvironment after: DiskStore. Smalltalk addToStartUpList: DiskStore after: LanguageEnvironment.
Even better, the language environment initialize does not need DiskStore... so Maybe we can simplify it a lot.
On Mon, Jun 25, 2012 at 4:26 PM, Guillermo Polito <guillermopolito@gmail.com> wrote: Hi!
is that hook used by anybody? The only implementor does ^self... And that method has no changed since 2009.
participants (2)
-
Guillermo Polito -
Stéphane Ducasse