Skip to content

Commit

Permalink
Update source, eask-core.el
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jan 31, 2025
1 parent 5eb3a89 commit 50b70ff
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions eask-core.el
Original file line number Diff line number Diff line change
Expand Up @@ -1383,9 +1383,10 @@ argument COMMAND."
(setq location (eask-source-url name location))
(unless location (eask-error "Unknown package archive `%s'" name))
(add-to-list 'package-archives (cons name location) t))
(defun eask-f-source-priority (archive-id &optional priority)
"Add PRIORITY for to ARCHIVE-ID."
(add-to-list 'package-archive-priorities (cons archive-id priority) t))
(defun eask-f-source-priority (name &optional priority)
"Add PRIORITY for to NAME."
(when (symbolp name) (setq name (eask-2str name))) ; ensure to string, accept symbol
(add-to-list 'package-archive-priorities (cons name priority) t))
(defun eask--setup-dependencies ()
"Setup dependencies list."
(setq eask-depends-on (reverse eask-depends-on)
Expand Down

0 comments on commit 50b70ff

Please sign in to comment.