mirror of https://codeberg.org/cage/tinmop/
- ignored error when trying to open a shared configuration file (lisp code) on program start; search for a file in the user's home instead.
This commit is contained in:
parent
d622a02098
commit
9005e9ec55
|
@ -123,9 +123,8 @@ etc.) happened"
|
|||
(db-utils:with-ready-database (:connect nil)
|
||||
(complete:initialize-complete-username-cache)
|
||||
(handler-case
|
||||
(progn
|
||||
(modules:load-sys-module +starting-init-file+)
|
||||
(modules:load-module +starting-init-file+))
|
||||
(or (ignore-errors (modules:load-sys-module +starting-init-file+))
|
||||
(modules:load-module +starting-init-file+))
|
||||
(error (e)
|
||||
(croatoan:end-screen)
|
||||
(format *error-output* "~a~%" e)
|
||||
|
|
Loading…
Reference in New Issue