Skip to content

Commit f7c841d

Browse files
committed
tweak(init): cleanup irrelevant comments/logs
1 parent f460d8f commit f7c841d

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

core/me-lib.el

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020

2121
(require 'rx)
2222

23+
24+
2325
;;; Some plist and alist missing functions
2426

2527
(defun +varplist-get (vplist keyword &optional car-p)

init.el

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,7 @@
7676
(add-hook
7777
'emacs-startup-hook
7878
(defun +mineamcs--restore-file-name-handler-alist-h ()
79-
(setq file-name-handler-alist
80-
(delete-dups (append file-name-handler-alist
81-
(get 'file-name-handler-alist 'original-value)))))
79+
(setq file-name-handler-alist (delete-dups (append file-name-handler-alist (get 'file-name-handler-alist 'original-value)))))
8280
100)
8381

8482
;; HACK: At this point, MinEmacs variables defined in `me-vars' should be
@@ -191,11 +189,7 @@
191189
;; When running in an async Org export context, there is no need to set
192190
;; the fonts, load the theme or play with the scratch buffer.
193191
(unless (featurep 'me-org-export-async-init)
194-
(+log! "Applying `minemacs-fonts'.")
195-
;; Initially MinEmacs loads the `doom-one-light' theme, and when
196-
;; `minemacs-theme' is set in user configuration, it is loaded here.
197192
(+load-theme)
198-
199193
(+deferred!
200194
(+log! "Loading the default persistent scratch buffer.")
201195
(let ((buf (current-buffer)))
@@ -248,7 +242,7 @@
248242
(append (when (memq 'me-splash minemacs-core-modules) '(me-splash))
249243
'(me-bootstrap)
250244
(when (< emacs-major-version 29) '(me-compat))
251-
'(me-builtin me-gc me-fonts)
245+
'(me-builtin me-gc)
252246
minemacs-core-modules)))
253247

254248
;; Load MinEmacs modules

0 commit comments

Comments
 (0)