1 ;;; cl.el --- Compatibility aliases for the old CL library. -*- lexical-binding: t -*-
3 ;; Copyright (C) 2012-2014 Free Software Foundation, Inc.
5 ;; Author: Stefan Monnier <monnier@iro.umontreal.ca>
6 ;; Keywords: extensions
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;; This is a compatibility file which provides the old names provided by CL
26 ;; before we cleaned up its namespace usage.
34 ;; (defun cl--rename ()
37 ;; (case-fold-search nil)
38 ;; (files '("cl.el" "cl-macs.el" "cl-seq.el" "cl-extra.el")))
39 ;; (dolist (file files)
40 ;; (with-current-buffer (find-file-noselect file)
41 ;; (goto-char (point-min))
42 ;; (while (re-search-forward
43 ;; "^(\\(def[^ \t\n]*\\) +'?\\(\\(\\sw\\|\\s_\\)+\\)" nil t)
44 ;; (let ((name (match-string-no-properties 2))
45 ;; (type (match-string-no-properties 1)))
46 ;; (unless (string-match-p "\\`cl-" name)
48 ;; ((member type '("defvar" "defconst"))
49 ;; (unless (member name vdefs) (push name vdefs)))
50 ;; ((member type '("defun" "defsubst" "defalias" "defmacro"))
51 ;; (unless (member name fdefs) (push name fdefs)))
52 ;; ((member type '("def-edebug-spec" "defsetf" "define-setf-method"
53 ;; "define-compiler-macro"))
55 ;; (t (error "Unknown type %S" type))))))))
56 ;; (let ((re (concat "\\_<" (regexp-opt (append vdefs fdefs)) "\\_>"))
58 ;; (dolist (file files)
59 ;; (with-current-buffer (find-file-noselect file)
60 ;; (goto-char (point-min))
61 ;; (while (re-search-forward re nil t)
62 ;; (replace-match "cl-\\&"))
64 ;; (with-current-buffer (find-file-noselect "cl-rename.el")
65 ;; (dolist (def vdefs)
66 ;; (insert (format "(defvaralias '%s 'cl-%s)\n" def def)))
67 ;; (dolist (def fdefs)
68 ;; (insert (format "(defalias '%s 'cl-%s)\n" def def)))
71 ;; (defun cl--unrename ()
72 ;; ;; Taken from "Naming Conventions" node of the doc.
73 ;; (let* ((names '(defun* defsubst* defmacro* function* member*
74 ;; assoc* rassoc* get* remove* delete*
75 ;; mapcar* sort* floor* ceiling* truncate*
76 ;; round* mod* rem* random*))
77 ;; (files '("cl.el" "cl-lib.el" "cl-macs.el" "cl-seq.el" "cl-extra.el"))
78 ;; (re (concat "\\_<cl-" (regexp-opt (mapcar #'symbol-name names))
80 ;; (dolist (file files)
81 ;; (with-current-buffer (find-file-noselect file)
82 ;; (goto-char (point-min))
83 ;; (while (re-search-forward re nil t)
84 ;; (delete-region (1- (point)) (point)))
87 (defun cl-unload-function ()
88 "Stop unloading of the Common Lisp extensions."
89 (message "Cannot unload the feature `cl'")
90 ;; Stop standard unloading!
93 ;;; Aliases to cl-lib's features.
104 ;; lambda-list-keywords
105 float-negative-epsilon
107 least-negative-normalized-float
108 least-positive-normalized-float
113 ;; custom-print-functions
115 (defvaralias var
(intern (format "cl-%s" var
))))
119 (random* . cl-random
)
123 (truncate* . cl-truncate
)
124 (ceiling* . cl-ceiling
)
126 (rassoc* . cl-rassoc
)
128 (member* . cl-member
)
129 (delete* . cl-delete
)
130 (remove* . cl-remove
)
131 (defsubst* . cl-defsubst
)
133 (function* . cl-function
)
134 (defmacro* . cl-defmacro
)
136 (mapcar* . cl-mapcar
)
215 define-compiler-macro
229 (define-setf-method . define-setf-expander
)
317 (let ((new (if (consp fun
) (prog1 (cdr fun
) (setq fun
(car fun
)))
318 (intern (format "cl-%s" fun
)))))
321 (defun cl--wrap-in-nil-block (fun &rest args
)
322 `(cl-block nil
,(apply fun args
)))
323 (advice-add 'dolist
:around
#'cl--wrap-in-nil-block
)
324 (advice-add 'dotimes
:around
#'cl--wrap-in-nil-block
)
326 (defun cl--pass-args-to-cl-declare (&rest specs
)
327 (macroexpand `(cl-declare ,@specs
)))
328 (advice-add 'declare
:after
#'cl--pass-args-to-cl-declare
)
330 ;;; Features provided a bit differently in Elisp.
332 ;; First, the old lexical-let is now better served by `lexical-binding', tho
333 ;; it's not 100% compatible.
335 (defvar cl-closure-vars nil
)
336 (defvar cl--function-convert-cache nil
)
338 (defun cl--function-convert (f)
339 "Special macro-expander for special cases of (function F).
340 The two cases that are handled are:
341 - closure-conversion of lambda expressions for `lexical-let'.
342 - renaming of F when it's a function defined via `cl-labels' or `labels'."
344 (declare-function cl--expr-contains-any
"cl-macs" (x y
))
346 ;; ¡¡Big Ugly Hack!! We can't use a compiler-macro because those are checked
347 ;; *after* handling `function', but we want to stop macroexpansion from
348 ;; being applied infinitely, so we use a cache to return the exact `form'
349 ;; being expanded even though we don't receive it.
350 ((eq f
(car cl--function-convert-cache
)) (cdr cl--function-convert-cache
))
351 ((eq (car-safe f
) 'lambda
)
352 (let ((body (mapcar (lambda (f)
353 (macroexpand-all f macroexpand-all-environment
))
355 (if (and cl-closure-vars
356 (cl--expr-contains-any body cl-closure-vars
))
357 (let* ((new (mapcar 'cl-gensym cl-closure-vars
))
358 (sub (cl-pairlis cl-closure-vars new
)) (decls nil
))
359 (while (or (stringp (car body
))
360 (eq (car-safe (car body
)) 'interactive
))
361 (push (list 'quote
(pop body
)) decls
))
362 (put (car (last cl-closure-vars
)) 'used t
)
363 `(list 'lambda
'(&rest --cl-rest--
)
364 ,@(cl-sublis sub
(nreverse decls
))
367 #'(lambda ,(append new
(cadr f
))
368 ,@(cl-sublis sub body
)))
369 ,@(nconc (mapcar (lambda (x) `(list 'quote
,x
))
371 '((quote --cl-rest--
))))))
372 (let* ((newf `(lambda ,(cadr f
) ,@body
))
373 (res `(function ,newf
)))
374 (setq cl--function-convert-cache
(cons newf res
))
377 (let ((found (assq f macroexpand-all-environment
)))
378 (if (and found
(ignore-errors
379 (eq (cadr (cl-caddr found
)) 'cl-labels-args
)))
380 (cadr (cl-caddr (cl-cadddr found
)))
381 (let ((res `(function ,f
)))
382 (setq cl--function-convert-cache
(cons f res
))
385 (defmacro lexical-let
(bindings &rest body
)
386 "Like `let', but lexically scoped.
387 The main visible difference is that lambdas inside BODY will create
388 lexical closures as in Common Lisp.
389 \n(fn BINDINGS BODY)"
390 (declare (indent 1) (debug let
))
391 (let* ((cl-closure-vars cl-closure-vars
)
392 (vars (mapcar (function
394 (or (consp x
) (setq x
(list x
)))
395 (push (make-symbol (format "--cl-%s--" (car x
)))
397 (set (car cl-closure-vars
) [bad-lexical-ref
])
398 (list (car x
) (cadr x
) (car cl-closure-vars
))))
404 `(,(car x
) (symbol-value ,(cl-caddr x
))))
407 (cons (cons 'function
#'cl--function-convert
)
408 macroexpand-all-environment
))))
409 (if (not (get (car (last cl-closure-vars
)) 'used
))
410 ;; Turn (let ((foo (cl-gensym)))
411 ;; (set foo <val>) ...(symbol-value foo)...)
412 ;; into (let ((foo <val>)) ...(symbol-value 'foo)...).
413 ;; This is good because it's more efficient but it only works with
414 ;; dynamic scoping, since with lexical scoping we'd need
415 ;; (let ((foo <val>)) ...foo...).
417 ,@(mapcar (lambda (x) `(defvar ,(cl-caddr x
))) vars
)
418 (let ,(mapcar (lambda (x) (list (cl-caddr x
) (cadr x
))) vars
)
419 ,(cl-sublis (mapcar (lambda (x)
424 `(let ,(mapcar (lambda (x)
426 `(make-symbol ,(format "--%s--" (car x
)))))
428 (setf ,@(apply #'append
430 (list `(symbol-value ,(cl-caddr x
)) (cadr x
)))
434 (defmacro lexical-let
* (bindings &rest body
)
435 "Like `let*', but lexically scoped.
436 The main visible difference is that lambdas inside BODY, and in
437 successive bindings within BINDINGS, will create lexical closures
438 as in Common Lisp. This is similar to the behavior of `let*' in
440 \n(fn BINDINGS BODY)"
441 (declare (indent 1) (debug let
))
442 (if (null bindings
) (cons 'progn body
)
443 (setq bindings
(reverse bindings
))
445 (setq body
(list `(lexical-let (,(pop bindings
)) ,@body
))))
448 ;; This should really have some way to shadow 'byte-compile properties, etc.
449 (defmacro flet
(bindings &rest body
)
450 "Make temporary overriding function definitions.
451 This is an analogue of a dynamically scoped `let' that operates on the function
452 cell of FUNCs rather than their value cell.
453 If you want the Common-Lisp style of `flet', you should use `cl-flet'.
454 The FORMs are evaluated with the specified function definitions in place,
455 then the definitions are undone (the FUNCs go back to their previous
456 definitions, or lack thereof).
458 \(fn ((FUNC ARGLIST BODY...) ...) FORM...)"
459 (declare (indent 1) (debug cl-flet
)
460 (obsolete "use either `cl-flet' or `cl-letf'." "24.3"))
463 (if (or (and (fboundp (car x
))
464 (eq (car-safe (symbol-function (car x
))) 'macro
))
465 (cdr (assq (car x
) macroexpand-all-environment
)))
466 (error "Use `labels', not `flet', to rebind macro names"))
467 (let ((func `(cl-function
469 (cl-block ,(car x
) ,@(cddr x
))))))
470 (when (cl--compiling-file)
471 ;; Bug#411. It would be nice to fix this.
472 (and (get (car x
) 'byte-compile
)
473 (error "Byte-compiling a redefinition of `%s' \
474 will not work - use `labels' instead" (symbol-name (car x
))))
475 ;; FIXME This affects the rest of the file, when it
476 ;; should be restricted to the flet body.
477 (and (boundp 'byte-compile-function-environment
)
478 (push (cons (car x
) (eval func
))
479 byte-compile-function-environment
)))
480 (list `(symbol-function ',(car x
)) func
)))
484 (defmacro labels
(bindings &rest body
)
485 "Make temporary function bindings.
486 Like `cl-labels' except that the lexical scoping is handled via `lexical-let'
487 rather than relying on `lexical-binding'."
488 (declare (indent 1) (debug cl-flet
) (obsolete cl-labels
"24.3"))
489 (let ((vars nil
) (sets nil
) (newenv macroexpand-all-environment
))
490 (dolist (binding bindings
)
491 ;; It's important that (not (eq (symbol-name var1) (symbol-name var2)))
492 ;; because these var's *names* get added to the macro-environment.
493 (let ((var (make-symbol (format "--cl-%s--" (car binding
)))))
495 (push `(cl-function (lambda .
,(cdr binding
))) sets
)
497 (push (cons (car binding
)
498 `(lambda (&rest cl-labels-args
)
499 (cl-list* 'funcall
',var
502 (macroexpand-all `(lexical-let ,vars
(setq ,@sets
) ,@body
) newenv
)))
504 ;; Generalized variables are provided by gv.el, but some details are
505 ;; not 100% compatible: not worth the trouble to add them to cl-lib.el, but we
506 ;; still need to support old users of cl.el.
508 (defun cl--gv-adapt (cl-gv do
)
509 ;; This function is used by all .elc files that use define-setf-expander and
510 ;; were compiled with Emacs>=24.3.
511 (let ((vars (nth 0 cl-gv
))
515 ;; Use cl-sublis as was done in cl-setf-do-modify.
517 (if (macroexp-copyable-p (car vals
))
518 (push (cons (pop vars
) (pop vals
)) substs
)
519 (push (list (pop vars
) (pop vals
)) binds
)))
522 (funcall do
(cl-sublis substs
(nth 4 cl-gv
))
523 ;; We'd like to do something like
524 ;; (lambda ,(nth 2 cl-gv) ,(nth 3 cl-gv)).
526 (macroexp-let2 macroexp-copyable-p v exp
527 (cl-sublis (cons (cons (car (nth 2 cl-gv
)) v
)
531 (defmacro define-setf-expander
(name arglist
&rest body
)
532 "Define a `setf' method.
533 This method shows how to handle `setf's to places of the form
534 \(NAME ARGS...). The argument forms ARGS are bound according to
535 ARGLIST, as if NAME were going to be expanded as a macro, then
536 the BODY forms are executed and must return a list of five elements:
537 a temporary-variables list, a value-forms list, a store-variables list
538 \(of length one), a store-form, and an access- form.
540 See `gv-define-expander', and `gv-define-setter' for better and
541 simpler ways to define setf-methods."
543 (&define name cl-lambda-list cl-declarations-or-string def-body
)))
545 ,@(if (stringp (car body
))
546 (list `(put ',name
'setf-documentation
,(pop body
))))
547 (gv-define-expander ,name
549 (lambda (do ,@arglist
)
550 (cl--gv-adapt (progn ,@body
) do
))))))
552 (defmacro defsetf
(name arg1
&rest args
)
553 "Define a `setf' method.
554 This macro is an easy-to-use substitute for `define-setf-expander'
555 that works well for simple place forms.
557 In the simple `defsetf' form, `setf's of the form (setf (NAME
558 ARGS...) VAL) are transformed to function or macro calls of the
559 form (FUNC ARGS... VAL). For example:
563 You can replace this form with `gv-define-simple-setter'.
565 Alternate form: (defsetf NAME ARGLIST (STORE) BODY...).
567 Here, the above `setf' call is expanded by binding the argument
568 forms ARGS according to ARGLIST, binding the value form VAL to
569 STORE, then executing BODY, which must return a Lisp form that
570 does the necessary `setf' operation. Actually, ARGLIST and STORE
571 may be bound to temporary variables which are introduced
572 automatically to preserve proper execution order of the arguments.
575 (defsetf nth (n x) (v) `(setcar (nthcdr ,n ,x) ,v))
577 You can replace this form with `gv-define-setter'.
579 \(fn NAME [FUNC | ARGLIST (STORE) BODY...])"
582 [&or
[symbolp
&optional stringp
]
583 [cl-lambda-list
(symbolp)]]
584 cl-declarations-or-string def-body
)))
585 (if (and (listp arg1
) (consp args
))
586 ;; Like `gv-define-setter' but with `cl-function'.
587 `(gv-define-expander ,name
588 (lambda (do &rest args
)
589 (gv--defsetter ',name
591 (lambda (,@(car args
) ,@arg1
) ,@(cdr args
)))
593 `(gv-define-simple-setter ,name
,arg1
,(car args
))))
595 ;; FIXME: CL used to provide a setf method for `apply', but I haven't been able
596 ;; to find a case where it worked. The code below tries to handle it as well.
597 ;; (defun cl--setf-apply (form last-witness last)
599 ;; ((not (consp form)) form)
600 ;; ((eq (ignore-errors (car (last form))) last-witness)
601 ;; `(apply #',(car form) ,@(butlast (cdr form)) ,last))
602 ;; ((and (memq (car form) '(let let*))
603 ;; (rassoc (list last-witness) (cadr form)))
604 ;; (let ((rebind (rassoc (list last-witness) (cadr form))))
605 ;; `(,(car form) ,(remq rebind (cadr form))
606 ;; ,@(mapcar (lambda (form) (cl--setf-apply form (car rebind) last))
608 ;; (t (mapcar (lambda (form) (cl--setf-apply form last-witness last)) form))))
609 ;; (gv-define-setter apply (val fun &rest args)
610 ;; (pcase fun (`#',(and (pred symbolp) f) (setq fun f))
611 ;; (_ (error "First arg to apply in setf is not #'SYM: %S" fun)))
612 ;; (let* ((butlast (butlast args))
613 ;; (last (car (last args)))
614 ;; (last-witness (make-symbol "--cl-tailarg--"))
615 ;; (setter (macroexpand `(setf (,fun ,@butlast ,last-witness) ,val)
616 ;; macroexpand-all-environment)))
617 ;; (cl--setf-apply setter last-witness last)))
620 ;; FIXME: CL used to provide get-setf-method, which was used by some
621 ;; setf-expanders, but now that we use gv.el, it is a lot more difficult
622 ;; and in general impossible to provide get-setf-method. Hopefully, it
623 ;; won't be needed. If needed, we'll have to do something nasty along the
625 ;; (defun get-setf-method (place &optional env)
626 ;; (let* ((witness (list 'cl-gsm))
627 ;; (expansion (gv-letplace (getter setter) place
628 ;; `(,witness ,getter ,(funcall setter witness)))))
629 ;; ...find "let prefix" of expansion, extract getter and setter from
630 ;; ...the rest, and build the 5-tuple))
631 (make-obsolete 'get-setf-method
'gv-letplace
"24.3")
633 (defmacro define-modify-macro
(name arglist func
&optional doc
)
634 "Define a `setf'-like modify macro.
635 If NAME is called, it combines its PLACE argument with the other
636 arguments from ARGLIST using FUNC. For example:
638 (define-modify-macro incf (&optional (n 1)) +)
640 You can replace this macro with `gv-letplace'."
642 (&define name cl-lambda-list
;; should exclude &key
643 symbolp
&optional stringp
)))
644 (if (memq '&key arglist
)
645 (error "&key not allowed in define-modify-macro"))
646 (let ((place (make-symbol "--cl-place--")))
647 `(cl-defmacro ,name
(,place
,@arglist
)
649 (,(if (memq '&rest arglist
) #'cl-list
* #'list
)
650 #'cl-callf
',func
,place
651 ,@(cl--arglist-args arglist
)))))
653 ;;; Additional compatibility code.
654 ;; For names that were clean but really aren't needed any more.
656 (define-obsolete-function-alias 'cl-macroexpand
'macroexpand
"24.3")
657 (define-obsolete-variable-alias 'cl-macro-environment
658 'macroexpand-all-environment
"24.3")
659 (define-obsolete-function-alias 'cl-macroexpand-all
'macroexpand-all
"24.3")
662 ;; This is just kept for compatibility with code byte-compiled by Emacs-20.
664 ;; No idea if this might still be needed.
665 (defun cl-not-hash-table (x &optional y
&rest _z
)
666 (declare (obsolete nil
"24.3"))
667 (signal 'wrong-type-argument
(list 'cl-hash-table-p
(or y x
))))
669 (defvar cl-builtin-gethash
(symbol-function 'gethash
))
670 (make-obsolete-variable 'cl-builtin-gethash nil
"24.3")
671 (defvar cl-builtin-remhash
(symbol-function 'remhash
))
672 (make-obsolete-variable 'cl-builtin-remhash nil
"24.3")
673 (defvar cl-builtin-clrhash
(symbol-function 'clrhash
))
674 (make-obsolete-variable 'cl-builtin-clrhash nil
"24.3")
675 (defvar cl-builtin-maphash
(symbol-function 'maphash
))
677 (make-obsolete-variable 'cl-builtin-maphash nil
"24.3")
678 (define-obsolete-function-alias 'cl-map-keymap
'map-keymap
"24.3")
679 (define-obsolete-function-alias 'cl-copy-tree
'copy-tree
"24.3")
680 (define-obsolete-function-alias 'cl-gethash
'gethash
"24.3")
681 (define-obsolete-function-alias 'cl-puthash
'puthash
"24.3")
682 (define-obsolete-function-alias 'cl-remhash
'remhash
"24.3")
683 (define-obsolete-function-alias 'cl-clrhash
'clrhash
"24.3")
684 (define-obsolete-function-alias 'cl-maphash
'maphash
"24.3")
685 (define-obsolete-function-alias 'cl-make-hash-table
'make-hash-table
"24.3")
686 (define-obsolete-function-alias 'cl-hash-table-p
'hash-table-p
"24.3")
687 (define-obsolete-function-alias 'cl-hash-table-count
'hash-table-count
"24.3")
689 (define-obsolete-function-alias 'cl-map-keymap-recursively
690 'cl--map-keymap-recursively
"24.3")
691 (define-obsolete-function-alias 'cl-map-intervals
'cl--map-intervals
"24.3")
692 (define-obsolete-function-alias 'cl-map-extents
'cl--map-overlays
"24.3")
693 (define-obsolete-function-alias 'cl-set-getf
'cl--set-getf
"24.3")
695 (defun cl-maclisp-member (item list
)
696 (declare (obsolete member
"24.3"))
697 (while (and list
(not (equal item
(car list
)))) (setq list
(cdr list
)))
700 ;; Used in the expansion of the old `defstruct'.
701 (defun cl-struct-setf-expander (x name accessor pred-form pos
)
702 (declare (obsolete nil
"24.3"))
703 (let* ((temp (make-symbol "--cl-x--")) (store (make-symbol "--cl-store--")))
704 (list (list temp
) (list x
) (list store
)
707 (list `(or ,(cl-subst temp
'cl-x pred-form
)
709 "%s storing a non-%s"
711 ,(if (eq (car (get name
'cl-struct-type
)) 'vector
)
712 `(aset ,temp
,pos
,store
)
716 (while (>= (setq pos
(1- pos
)) 0)
717 (setq xx
`(cdr ,xx
)))
719 `(nthcdr ,pos
,temp
))
721 (list accessor temp
))))
725 (run-hooks 'cl-load-hook
)