소스 검색

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.


불러오는 중...
취소
저장