瀏覽代碼

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…
取消
儲存