Revert "fix a couple more tilde paths."

This reverts commit b139a896ef.
paths
Doug Coleman 2018-03-15 08:42:46 -05:00
parent 97ea4ccb17
commit c1f38d6864
2 changed files with 4 additions and 4 deletions

View File

@ -126,9 +126,9 @@ ARTICLE: "rc-files" "Running code on startup"
$nl
"If you are unsure where the files should be located, evaluate the following code:"
{ $code
"USING: io io.pathnames ;"
"\"~/.factor-rc\" absolute-path print"
"\"~/.factor-boot-rc\" absolute-path print"
"USE: command-line"
"\".factor-rc\" rc-path print"
"\".factor-boot-rc\" rc-path print"
}
"Here is an example " { $snippet ".factor-boot-rc" } " which sets up your developer name:"
{ $code

View File

@ -94,7 +94,7 @@ M: method word-vocabulary "method-generic" word-prop word-vocabulary ;
: run-mason-rc ( -- )
t "user-init" [
"~/.factor-mason-rc" try-user-init
".factor-mason-rc" rc-path try-user-init
] with-variable ;
: check-user-init-errors ( -- ? )