diff options
author | Brian Leung <leungbk@mailfence.com> | 2020-10-12 18:55:38 +0000 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-10-12 21:25:50 +0200 |
commit | 237fd33aef7e0f4b187ee0c1f367f27a90d603dc (patch) | |
tree | 075278046c04ad1b8ef032d8f484f71eb808b7f6 /lisp/emacs-lisp/find-func.el | |
parent | a3304feb9be1489036574fdac2a4a3e4e7a0c38a (diff) | |
download | emacs-237fd33aef7e0f4b187ee0c1f367f27a90d603dc.tar.gz emacs-237fd33aef7e0f4b187ee0c1f367f27a90d603dc.tar.bz2 emacs-237fd33aef7e0f4b187ee0c1f367f27a90d603dc.zip |
Fix some compilation warnings in non nativecomp build (bug#43892)
* lisp/emacs-lisp/advice.el (comp-subr-trampoline-install):
Declare function.
* lisp/emacs-lisp/find-func.el (comp-eln-to-el-h): Declare
variable.
* lisp/emacs-lisp/nadvice.el (comp-subr-trampoline-install):
Declare function.
* lisp/files.el (comp-eln-to-el-h): Declare variable.
* lisp/help.el (subr-native-lambda-list): Declare function.
Diffstat (limited to 'lisp/emacs-lisp/find-func.el')
-rw-r--r-- | lisp/emacs-lisp/find-func.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el index 9e4d8cf1aa8..4417082971f 100644 --- a/lisp/emacs-lisp/find-func.el +++ b/lisp/emacs-lisp/find-func.el @@ -178,6 +178,8 @@ See the functions `find-function' and `find-variable'." (setq name rel)))) (unless (equal name library) name))) +(defvar comp-eln-to-el-h) + (defun find-library-name (library) "Return the absolute file name of the Emacs Lisp source of LIBRARY. LIBRARY should be a string (the name of the library)." |