diff options
Diffstat (limited to 'lisp/eshell/esh-arg.el')
-rw-r--r-- | lisp/eshell/esh-arg.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/eshell/esh-arg.el b/lisp/eshell/esh-arg.el index 011e2a55520..7db152d3604 100644 --- a/lisp/eshell/esh-arg.el +++ b/lisp/eshell/esh-arg.el @@ -22,9 +22,15 @@ ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ;; Boston, MA 02110-1301, USA. +;;; Commentary: + +;; Parsing of arguments can be extended by adding functions to the +;; hook `eshell-parse-argument-hook'. For a good example of this, see +;; `eshell-parse-drive-letter', defined in eshell-dirs.el. + (provide 'esh-arg) -(eval-when-compile (require 'esh-maint)) +(eval-when-compile (require 'eshell)) (defgroup eshell-arg nil "Argument parsing involves transforming the arguments passed on the @@ -33,12 +39,6 @@ yield the values intended." :tag "Argument parsing" :group 'eshell) -;;; Commentary: - -;; Parsing of arguments can be extended by adding functions to the -;; hook `eshell-parse-argument-hook'. For a good example of this, see -;; `eshell-parse-drive-letter', defined in eshell-dirs.el. - (defcustom eshell-parse-argument-hook (list ;; a term such as #<buffer NAME>, or #<process NAME> is a buffer |