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 Dec 15, 2024
1 parent 6d4255e commit 1f8ca18
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion eask-core.el
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,13 @@ full detials."
(cdr (assoc :url extras)))))
(defun eask-package-desc-keywords ()
"Return keywords from package descriptor."
(when eask-package-desc (package-desc--keywords eask-package-desc)))
(when eask-package-desc
(or (package-desc--keywords eask-package-desc)
;; XXX: Handle Emacs 26.x keywords cannot be parsed issue.
(and eask-package-file
(with-temp-buffer
(insert-file-contents eask-package-file)
(lm-keywords-list))))))
(defun eask-pkg-el ()
"Return package description file if exists."
(let ((pkg-el (package--description-file default-directory)))
Expand Down

0 comments on commit 1f8ca18

Please sign in to comment.