This looks suspicious and it is at the end of my UserStartup:
;BEGIN MUI ASL
if exists "Workbench:MUI"
run <>nil: MUI:PatchASL
endif
;END MUI ASL
Before, this was not in my user-startup.
And, before - at the beginning of my US:
;BEGIN MUI
If EXISTS SYS:MUI
C:Assign >NIL: MUI: SYS:MUI
C:Assign >NIL: ADD LIBS: MUI:Libs
C:Assign >NIL: ADD LOCALE: MUI:Locale
C:Assign >NIL: ADD HELP: MUI:Docs
EndIf
;END MUI
But, now it is:
;BEGIN MUI
if exists "Workbench:MUI"
assign MUI: "Workbench:MUI"
if exists MUI:Libs
assign add LIBS: MUI:Libs
endif
if exists MUI:Locale
assign add LOCALE: MUI:Locale
endif
version >nil: exec.library 39
if not warn
if exists MUI:Docs
if exists HELP:dummy ; do not remove
endif ; this entry!
assign add HELP: MUI:Docs
endif
endif
endif
;END MUI
Just wondering what to do.