Skip to content

Latest commit

 

History

History
34 lines (31 loc) · 1.22 KB

notes.org

File metadata and controls

34 lines (31 loc) · 1.22 KB

DOCT notes

Bug

Documentation

Optimization

Feature

Enhancement

Use %S format spec string

Miscellaneous

RESEARCH why do we only need eval in one case?

Both macros return lambdas…

  • Note taken on [2020-03-30 Mon 23:42]
    Comment from elfeed-link.el which may be of relevance:
    ;;;###autoload
    (eval-after-load 'org
      `(funcall
        ;; The extra quote below is necessary because uncompiled closures
        ;; do not evaluate to themselves. The quote is harmless for
        ;; byte-compiled function objects.
        ',(lambda ()
            ;;omitting body of lambda... ~NV
            )))
        

Unload byte compiled file loaded by straight.el when developing

(when (featurep 'doct)
  (unload-feature 'doct t))
(load-file "~/.emacs.d/straight/repos/doct/doct.el")