Skip to content

Commit

Permalink
fix: Let global have the highest prev
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Nov 11, 2024
1 parent d2488f7 commit 781687f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lisp/_prepare.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,13 @@ Set up the systems; on contrary, you should use the function

(setq qob-enable-color (not (qob-no-color-p)))

(cond ((qob-special-p)
(cond ((qob-global-p)
;; Load configuration.
(qob-with-verbosity
'debug (progn
(qob-file-load (user-homedir-pathname))
(qob-msg "✓ Loading global Qob file in ~A... done!" qob-file))))
((qob-special-p)
;; Load configuration.
(qob-with-verbosity
'debug (let ((is-local-p))
Expand All @@ -544,12 +550,6 @@ Set up the systems; on contrary, you should use the function
(qob-msg "✓ Loading ~AQob file in ~A... done!"
(if is-local-p "" "global ")
qob-file))))
((qob-global-p)
;; Load configuration.
(qob-with-verbosity
'debug (progn
(qob-file-load (user-homedir-pathname))
(qob-msg "✓ Loading global Qob file in ~A... done!" qob-file))))
(t
;; All dists are disabled be default.
(qob-ql-no-dists)
Expand Down

0 comments on commit 781687f

Please sign in to comment.