diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2018-01-23 14:13:50 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2018-01-23 14:13:50 -0500 |
commit | e41c1dc99e631886fafc5595d4f4c048f294af33 (patch) | |
tree | f68ee0f8139a2310cc3b25f073535013b2d469e9 /lisp/format-spec.el | |
parent | 5ed5f548aaa1f3fa7941895d48f97ad970b38ff1 (diff) | |
download | emacs-e41c1dc99e631886fafc5595d4f4c048f294af33.tar.gz |
* lisp/net/imap.el: Use lexical-binding and cl-lib
Require packages instead of autoloading their functions.
(imap-send-command): Remove unused vars 'stream' and 'eol'.
(imap-parse-response): Use pcase.
(imap-parse-fetch): Remove unused arg 'response'.
* lisp/format-spec.el: Don't require CL.
Diffstat (limited to 'lisp/format-spec.el')
-rw-r--r-- | lisp/format-spec.el | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lisp/format-spec.el b/lisp/format-spec.el index 31caf931edb..38ce69b6c4d 100644 --- a/lisp/format-spec.el +++ b/lisp/format-spec.el @@ -24,8 +24,6 @@ ;;; Code: -(eval-when-compile (require 'cl)) - (defun format-spec (format specification) "Return a string based on FORMAT and SPECIFICATION. FORMAT is a string containing `format'-like specs like \"bash %u %k\", |