nit: general reformatting & minor comment revision

This commit is contained in:
Henrik Lissner 2023-09-11 23:56:21 +02:00
parent d8372b6e2d
commit a44e8d6bfd
No known key found for this signature in database
GPG key ID: B60957CA074D39A3
3 changed files with 9 additions and 6 deletions

View file

@ -119,11 +119,11 @@ uses a straight or package.el command directly).")
(append (apply fn args) ; lockfiles still take priority (append (apply fn args) ; lockfiles still take priority
(doom-package-pinned-list))) (doom-package-pinned-list)))
;; HACK: This fixes an issue present in recent builds of Emacs 29. See ;; HACK: This fixes an issue introduced in emacs-mirror/emacs@0d383b592c2f and
;; emacs-mirror/emacs@0d383b592c2f. Straight.el uses `loaddefs-generate' if it ;; is present in >=29: Straight.el uses `loaddefs-generate' if it is
;; is available, which activates `emacs-lisp-mode' to read autoloads files, ;; available, which activates `emacs-lisp-mode' to read autoloads files, but
;; but does so without suppressing its hooks. Some packages (like overseer) ;; does so without suppressing its hooks. Some packages (like overseer) add
;; add hooks to `emacs-lisp-mode-hook' in their autoloads, and once triggered, ;; hooks to `emacs-lisp-mode-hook' in their autoloads, and once triggered,
;; they will try to load their dependencies (like dash or pkg-info), causing ;; they will try to load their dependencies (like dash or pkg-info), causing
;; file errors. ;; file errors.
;; REVIEW: Report this upstream. ;; REVIEW: Report this upstream.

View file

@ -14,8 +14,9 @@ easier to scroll through.")
(defvar +rss-workspace-name "*rss*" (defvar +rss-workspace-name "*rss*"
"Name of the workspace that contains the elfeed buffer.") "Name of the workspace that contains the elfeed buffer.")
;; ;;
;; Packages ;;; Packages
(use-package! elfeed (use-package! elfeed
:commands elfeed :commands elfeed
@ -83,6 +84,7 @@ easier to scroll through.")
(message "elfeed-org: ignoring %S because it can't be read" file)) (message "elfeed-org: ignoring %S because it can't be read" file))
(setq rmh-elfeed-org-files (cl-remove-if-not #'file-exists-p files)))))) (setq rmh-elfeed-org-files (cl-remove-if-not #'file-exists-p files))))))
(use-package! elfeed-goodies (use-package! elfeed-goodies
:after elfeed :after elfeed
:config :config

View file

@ -48,6 +48,7 @@
["Run" +fortran/run :active t :help "Run the Executable"] ["Run" +fortran/run :active t :help "Run the Executable"]
["Test" +fortran/fpm-test :active (+fortran--fpm-toml) :help "Run the Unit Tests"]))) ["Test" +fortran/fpm-test :active (+fortran--fpm-toml) :help "Run the Unit Tests"])))
(use-package! fortran (use-package! fortran
;; The `.for' extension is automatically recognized by Emacs and invokes ;; The `.for' extension is automatically recognized by Emacs and invokes
;; `fortran-mode', but not its capital variant `.FOR'. Many old files are ;; `fortran-mode', but not its capital variant `.FOR'. Many old files are