Преглед изворни кода

Try to fix with-eval-after-load polyfill

pull/15/head
10sr пре 8 година
родитељ
комит
07d27bb226
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      emacs.el

+ 1
- 1
emacs.el Прегледај датотеку

@@ -35,7 +35,7 @@
(defmacro with-eval-after-load (file &rest body)
"Execute BODY after FILE is loaded."
(declare (indent 1))
`(eval-after-load ,file '(progn ,@body))))
`(eval-after-load ,file (quote (progn ,@body)))))

(defun call-after-init (func)
"If `after-init-hook' has been run, call FUNC immediately.


Loading…
Откажи
Сачувај