diff options
Diffstat (limited to 'emacs/.emacs.d/wpc/dotted.el')
-rw-r--r-- | emacs/.emacs.d/wpc/dotted.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/.emacs.d/wpc/dotted.el b/emacs/.emacs.d/wpc/dotted.el index 1c338cd43b50..f400affd6ec6 100644 --- a/emacs/.emacs.d/wpc/dotted.el +++ b/emacs/.emacs.d/wpc/dotted.el @@ -19,14 +19,14 @@ (require 'prelude) (require 'macros) -(require 'cl-macs) +(require 'cl-lib) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Library ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (cl-defun dotted-new (&optional a b) - "Create a new dotted pair (i.e. cons cell)." + "Create a new dotted pair of A and B." (cons a b)) (defun dotted-instance? (x) |