diff options
| author | Glenn Morris | 2018-03-02 19:33:24 -0800 |
|---|---|---|
| committer | Glenn Morris | 2018-03-02 19:33:48 -0800 |
| commit | ed071fa79c05e88a2ec3830c0813ed94544854b2 (patch) | |
| tree | 0f806d89db9267f53713e58b4ee251b2b53143d6 /lisp/eshell/em-script.el | |
| parent | f50598a53dfcee45a8d711abb4b542e8ed82714b (diff) | |
| download | emacs-ed071fa79c05e88a2ec3830c0813ed94544854b2.tar.gz emacs-ed071fa79c05e88a2ec3830c0813ed94544854b2.zip | |
Quieten eshell compilation
* lisp/eshell/em-dirs.el (eshell-dirs-initialize, eshell/pwd):
* lisp/eshell/em-script.el (eshell-script-initialize):
* lisp/eshell/em-unix.el (eshell/whoami):
* lisp/eshell/esh-proc.el (eshell/jobs): Mark unused arguments.
Diffstat (limited to 'lisp/eshell/em-script.el')
| -rw-r--r-- | lisp/eshell/em-script.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/em-script.el b/lisp/eshell/em-script.el index 1b0b220d5bc..a5d8e96ba84 100644 --- a/lisp/eshell/em-script.el +++ b/lisp/eshell/em-script.el | |||
| @@ -61,7 +61,7 @@ This includes when running `eshell-command'." | |||
| 61 | "Initialize the script parsing code." | 61 | "Initialize the script parsing code." |
| 62 | (make-local-variable 'eshell-interpreter-alist) | 62 | (make-local-variable 'eshell-interpreter-alist) |
| 63 | (setq eshell-interpreter-alist | 63 | (setq eshell-interpreter-alist |
| 64 | (cons (cons #'(lambda (file args) | 64 | (cons (cons #'(lambda (file _args) |
| 65 | (string= (file-name-nondirectory file) | 65 | (string= (file-name-nondirectory file) |
| 66 | "eshell")) | 66 | "eshell")) |
| 67 | 'eshell/source) | 67 | 'eshell/source) |