瀏覽代碼

show message on autoload defined

pull/1/head
10sr 12 年之前
父節點
當前提交
5fa25097db
共有 1 個檔案被更改,包括 6 行新增2 行删除
  1. +6
    -2
      emacs.el

+ 6
- 2
emacs.el 查看文件

@@ -104,13 +104,17 @@ found, otherwise returns nil."
(and libpath
`(progn
,@(mapcar (lambda (f)
(or (fboundp f)
(unless (fboundp f)
(progn
(message "Autoloaded function `%S' defined (%s)"
f
libpath)
`(autoload (quote ,f)
,libname
,(concat "Autoloaded function defined in \""
libpath
"\".")
t)))
t))))
(or (eval functions)
`(,(eval feature))))
(eval-after-load ,feature


Loading…
取消
儲存