diff options
Diffstat (limited to 'lisp/url/url-future.el')
-rw-r--r-- | lisp/url/url-future.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/url/url-future.el b/lisp/url/url-future.el index 8cdd6916a35..db074807e1b 100644 --- a/lisp/url/url-future.el +++ b/lisp/url/url-future.el @@ -40,9 +40,9 @@ ;;; Code: -(eval-when-compile (require 'cl)) +(eval-when-compile (require 'cl-lib)) -(defstruct url-future callback errorback status value) +(cl-defstruct url-future callback errorback status value) (defmacro url-future-done-p (url-future) `(url-future-status ,url-future)) |