aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-06-15 17:42:09 +0200
committerLars Ingebrigtsen2019-06-15 17:42:09 +0200
commitb7b4dd99907be6b585e42da8618579644e68873d (patch)
tree6814060495459fb79e6db6cfa91ea5794dae0ff3 /lisp/eshell
parentc9afa2eed5c7869d207c21e140fc711e2729e951 (diff)
downloademacs-b7b4dd99907be6b585e42da8618579644e68873d.tar.gz
emacs-b7b4dd99907be6b585e42da8618579644e68873d.zip
Fix compilation warning in esh-cmd.el
* lisp/eshell/esh-cmd.el (pcomplete--here): Declare function to avoid byte compilation warning, which is what erc-notify.el also does in a similar situation.
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/esh-cmd.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/eshell/esh-cmd.el b/lisp/eshell/esh-cmd.el
index 6e03bda22b7..83cc5999dc3 100644
--- a/lisp/eshell/esh-cmd.el
+++ b/lisp/eshell/esh-cmd.el
@@ -113,6 +113,8 @@
113 (require 'cl-lib) 113 (require 'cl-lib)
114 (require 'pcomplete)) 114 (require 'pcomplete))
115 115
116(declare-function pcomplete--here "pcomplete"
117 (&optional form stub paring form-only))
116 118
117(defgroup eshell-cmd nil 119(defgroup eshell-cmd nil
118 "Executing an Eshell command is as simple as typing it in and 120 "Executing an Eshell command is as simple as typing it in and