Mercurial > hg > xemacs-beta
view lisp/cl.el @ 5726:179f4a9201b5
Merge.
author | Mike Sperber <sperber@deinprogramm.de> |
---|---|
date | Tue, 05 Mar 2013 08:55:56 +0100 |
parents | ae2fdb1fd9e0 |
children |
line wrap: on
line source
;;; cl.el --- Common Lisp extensions for XEmacs Lisp ;; Copyright (C) 1993, 1997 Free Software Foundation, Inc. ;; Copyright (C) 2010 Ben Wing. ;; Author: Dave Gillespie <daveg@synaptics.com> ;; Maintainer: XEmacs Development Team ;; Version: 2.02 ;; Keywords: extensions, dumped, lisp ;; This file is part of XEmacs. ;; XEmacs is free software: you can redistribute it and/or modify it ;; under the terms of the GNU General Public License as published by the ;; Free Software Foundation, either version 3 of the License, or (at your ;; option) any later version. ;; XEmacs is distributed in the hope that it will be useful, but WITHOUT ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or ;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ;; for more details. ;; You should have received a copy of the GNU General Public License ;; along with XEmacs. If not, see <http://www.gnu.org/licenses/>. ;;; Synched up with: FSF 21.3. ;;; Commentary: ;; This file is dumped with XEmacs. ;; These are extensions to Emacs Lisp that provide a degree of ;; Common Lisp compatibility, beyond what is already built-in ;; in Emacs Lisp. ;; ;; This package was written by Dave Gillespie; it is a complete ;; rewrite of Cesar Quiroz's original cl.el package of December 1986. ;; ;; Bug reports, comments, and suggestions are welcome! ;; This file contains the portions of the Common Lisp extensions ;; package which should always be present. ;;; Future notes: ;; Once Emacs 19 becomes standard, many things in this package which are ;; messy for reasons of compatibility can be greatly simplified. For now, ;; I prefer to maintain one unified version. ;;; Change Log: ;; Version 2.02 (30 Jul 93): ;; * Added "cl-compat.el" file, extra compatibility with old package. ;; * Added `lexical-let' and `lexical-let*'. ;; * Added `define-modify-macro', `callf', and `callf2'. ;; * Added `ignore-errors'. ;; * Changed `(setf (nthcdr N PLACE) X)' to work when N is zero. ;; * Merged `*gentemp-counter*' into `*gensym-counter*'. ;; * Extended `subseq' to allow negative START and END like `substring'. ;; * Added `in-ref', `across-ref', `elements of-ref' loop clauses. ;; * Added `concat', `vconcat' loop clauses. ;; * Cleaned up a number of compiler warnings. ;; Version 2.01 (7 Jul 93): ;; * Added support for FSF version of Emacs 19. ;; * Added `add-hook' for Emacs 18 users. ;; * Added `defsubst*' and `symbol-macrolet'. ;; * Added `maplist', `mapc', `mapl', `mapcan', `mapcon'. ;; * Added `map', `concatenate', `reduce', `merge'. ;; * Added `revappend', `nreconc', `tailp', `tree-equal'. ;; * Added `assert', `check-type', `typecase', `typep', and `deftype'. ;; * Added destructuring and `&environment' support to `defmacro*'. ;; * Added destructuring to `loop', and added the following clauses: ;; `elements', `frames', `overlays', `intervals', `buffers', `key-seqs'. ;; * Renamed `delete' to `delete*' and `remove' to `remove*'. ;; * Completed support for all keywords in `remove*', `substitute', etc. ;; * Added `most-positive-float' and company. ;; * Fixed hash tables to work with latest Lucid Emacs. ;; * `proclaim' forms are no longer compile-time-evaluating; use `declaim'. ;; * Syntax for `warn' declarations has changed. ;; * Improved implementation of `random*'. ;; * Moved most sequence functions to a new file, cl-seq.el. ;; * Moved `eval-when' into cl-macs.el. ;; * Moved `pushnew' and `adjoin' to cl.el for most common cases. ;; * Moved `provide' forms down to ends of files. ;; * Changed expansion of `pop' to something that compiles to better code. ;; * Changed so that no patch is required for Emacs 19 byte compiler. ;; * Made more things dependent on `optimize' declarations. ;; * Added a partial implementation of struct print functions. ;; * Miscellaneous minor changes. ;; Version 2.00: ;; * First public release of this package. ;;; Code: (defvar cl-optimize-speed 1) (defvar cl-optimize-safety 1) (defvar custom-print-functions nil "This is a list of functions that format user objects for printing. Each function is called in turn with three arguments: the object, the stream, and the print level (currently ignored). If it is able to print the object it returns true; otherwise it returns nil and the printer proceeds to the next function on the list. This variable is not used at present, but it is defined in hopes that a future Emacs interpreter will be able to use it.") ;;; Predicates. (defun eql (a b) ; See compiler macro in cl-macs.el "Return t if the arguments are the same Lisp object, or numerically equal. They must be of the same type; the difference between `eq' and `eql' is most relevant when it comes to the non-fixnum number types. In this implementation, fixnums of the same numeric value are always `eq', but this is not true for other numeric types, among them floats, bignums and ratios, if available. See also `=' (which doesn't require that its arguments be of the same type, but only accepts numeric arguments, characters and markers) and `equal'." (or (eq a b) (and (numberp a) (equal a b)))) ;;; Generalized variables. These macros are defined here so that they ;;; can safely be used in .emacs files. (defmacro incf (place &optional x) "Increment PLACE by X (1 by default). PLACE may be a symbol, or any generalized variable allowed by `setf'. The return value is the incremented value of PLACE." (if (symbolp place) (list 'setq place (if x (list '+ place x) (list '1+ place))) ;; XEmacs byte-compiler optimizes (+ FOO 1) to (1+ FOO), so this ;; is OK. (list 'callf '+ place (or x 1)))) (defmacro decf (place &optional x) "Decrement PLACE by X (1 by default). PLACE may be a symbol, or any generalized variable allowed by `setf'. The return value is the decremented value of PLACE." (if (symbolp place) (list 'setq place (if x (list '- place x) (list '1- place))) (list 'callf '- place (or x 1)))) (defmacro pop (place) "Remove and return the head of the list stored in PLACE. Analogous to (prog1 (car PLACE) (setf PLACE (cdr PLACE))), though more careful about evaluating each argument only once and in the right order. PLACE may be a symbol, or any generalized variable allowed by `setf'." (if (symbolp place) `(car-safe (prog1 ,place (setq ,place (cdr ,place)))) (cl-do-pop place))) (defmacro push (newelt listname) "Add NEWELT at the beginning of the list stored in LISTNAME. Analogous to (setf LISTNAME (cons NEWELT LISTNAME)), though more careful about evaluating each argument only once and in the right order. LISTNAME may be a symbol, or any generalized variable allowed by `setf'; that is, it does not necessarily have to be a list, though `push' is most often used on lists. " (if (symbolp listname) `(setq ,listname (cons ,newelt ,listname)) (list 'callf2 'cons newelt listname))) (defmacro pushnew (newelt listname &rest keys) "Add NEWELT at the beginning of LISTNAME, unless it's already in LISTNAME. Like (push NEWELT LISTNAME), except that the list is unmodified if NEWELT is `eql' to an element already on the list. Keywords supported: :test :test-not :key See `member*' for the meaning of :test, :test-not and :key." (if (symbolp listname) (list 'setq listname (list* 'adjoin newelt listname keys)) (list* 'callf2 'adjoin newelt listname keys))) (defun cl-set-elt (seq n val) (if (listp seq) (setcar (nthcdr n seq) val) (aset seq n val))) (defun cl-set-nthcdr (n list x) (if (<= n 0) x (setcdr (nthcdr (1- n) list) x) list)) (defun cl-set-buffer-substring (start end val) (save-excursion (delete-region start end) (goto-char start) (insert val) val)) (defun cl-set-substring (str start end val) (if end (if (< end 0) (incf end (length str))) (setq end (length str))) (if (< start 0) (incf start (length str))) (concat (and (> start 0) (substring str 0 start)) val (and (< end (length str)) (substring str end)))) ;;; Control structures. ;; The macros `when' and `unless' are so useful that we want them to ;; ALWAYS be available. So they've been moved from cl.el to eval.c. ;; Note: FSF Emacs moved them to subr.el in FSF 20. ;;; XEmacs; multiple values are in eval.c and cl-macs.el. ;;; We no longer support `multiple-value-apply', which was ill-conceived to ;;; start with, is not specified by Common Lisp, and which nothing uses, ;;; according to Google Code Search, as of Sat Mar 14 23:31:35 GMT 2009. (make-obsolete 'multiple-value-apply 'multiple-value-call) ;;; Macros. ;; XEmacs: incorporate the functionality of #'cl-macroexpand into ;; #'macroexpand, in eval.c. (defalias 'cl-macroexpand 'macroexpand) (defalias 'macroexpand-internal 'macroexpand) (defvar cl-compiling-file nil) (defun cl-compiling-file () (or cl-compiling-file ;; XEmacs change ; (and (boundp 'outbuffer) (bufferp (symbol-value 'outbuffer)) ; (equal (buffer-name (symbol-value 'outbuffer)) ; " *Compiler Output*")) (and (boundp 'byte-compile-outbuffer) (bufferp (symbol-value 'byte-compile-outbuffer)) (equal (buffer-name (symbol-value 'byte-compile-outbuffer)) " *Compiler Output*")) )) (defvar cl-proclaims-deferred nil) (defun proclaim (spec) (if (fboundp 'cl-do-proclaim) (cl-do-proclaim spec t) (push spec cl-proclaims-deferred)) nil) (defmacro declaim (&rest specs) (let ((body (mapcar (function (lambda (x) (list 'proclaim (list 'quote x)))) specs))) (if (cl-compiling-file) (list* 'eval-when '(compile load eval) body) (cons 'progn body)))) ; avoid loading cl-macs.el for eval-when ;;; Symbols. (defun cl-random-time () (let* ((time (copy-sequence (current-time-string))) (i (length time)) (v 0)) (while (>= (decf i) 0) (setq v (+ (* v 3) (aref time i)))) (if (fboundp 'coerce-number) (coerce-number v 'fixnum) v))) (defvar *gensym-counter* (* (logand (cl-random-time) 1023) 100)) ;; XEmacs change: gensym and gentemp moved here from cl-macs.el (defun gensym (&optional arg) "Generate a new uninterned symbol. The name is made by appending a number to a prefix. If ARG is a string, it is the prefix, otherwise the prefix defaults to \"G\". If ARG is an integer, the internal counter is reset to that number before creating the name. There is no way to specify both using this function." (let ((prefix (if (stringp arg) arg "G")) (num (if (integerp arg) arg (prog1 *gensym-counter* (setq *gensym-counter* (1+ *gensym-counter*)))))) (make-symbol (format "%s%d" prefix num)))) (defun gentemp (&optional arg) "Generate a new interned symbol with a unique name. The name is made by appending a number to ARG, default \"G\". If ARG is not a string, it is ignored." (let ((prefix (if (stringp arg) arg "G")) name) (while (intern-soft (setq name (format "%s%d" prefix *gensym-counter*))) (setq *gensym-counter* (1+ *gensym-counter*))) (intern name))) ;;; Numbers. ;; XEmacs change: ditch floatp-safe. (defun plusp (number) "Return t if NUMBER is positive." (> number 0)) (defun minusp (number) "Return t if NUMBER is negative." (< number 0)) (defun oddp (integer) "Return t if INTEGER is odd." (eql (logand integer 1) 1)) (defun evenp (integer) "Return t if INTEGER is even." (eql (logand integer 1) 0)) ;; XEmacs addition (defalias 'cl-abs 'abs) (defvar *random-state* (vector 'cl-random-state-tag -1 30 (cl-random-time))) ;;; The following are set by code in cl-extra.el (defconst most-positive-float nil "The float closest in value to positive infinity.") (defconst most-negative-float nil "The float closest in value to negative infinity.") (defconst least-positive-float nil "The positive float closest in value to zero.") (defconst least-negative-float nil "The negative float closest in value to zero.") (defconst least-positive-normalized-float nil "The normalized positive float closest in value to zero. A float is normalized if the most significant bit of its mantissa is 1. Use of denormalized (equivalently, subnormal) floats in calculations will lead to gradual underflow, though they can be more accurate in representing individual small values. Normal and subnormal floats are as described in IEEE 754.") (defconst least-negative-normalized-float nil "The normalized negative float closest in value to zero. See `least-positive-normalized-float' for details of normal and denormalized numbers.") (defconst float-epsilon nil "The smallest float guaranteed not `eql' to 1.0 when added to 1.0. That is, (eql 1.0 (+ 1.0 X)) will always give nil if (<= float-epsilon X) , but it may give t for smaller values.") (defconst float-negative-epsilon nil "The smallest float guaranteed not `eql' to 1.0 when subtracted from 1.0. That is, (eql 1.0 (- 1.0 X)) will always give nil if (<= float-negative-epsilon X) , but it may give t for smaller values.") ;;; Sequence functions. (defalias 'copy-seq 'copy-sequence) ;; XEmacs; #'mapcar* is in C. (defalias 'svref 'aref) ;; Compiler macro in cl-macs.el ;;; List functions. ;; These functions are made known to the byte-compiler by cl-macs.el ;; and turned into efficient car and cdr bytecodes. (defalias 'first 'car) (defalias 'rest 'cdr) ;; XEmacs change; this needs to error if handed a non-list. (defun endp (list) "Return t if LIST is nil, or nil if LIST is a cons. Error otherwise." (prog1 (null list) (and list (atom list) (error 'wrong-type-argument #'listp list)))) ;; XEmacs change: make it a real function (defun second (x) "Return the second element of the list LIST." (car (cdr x))) (defun third (x) "Return the third element of the list X." (car (cdr (cdr x)))) (defun fourth (x) "Return the fourth element of the list X." (nth 3 x)) (defun fifth (x) "Return the fifth element of the list X." (nth 4 x)) (defun sixth (x) "Return the sixth element of the list X." (nth 5 x)) (defun seventh (x) "Return the seventh element of the list X." (nth 6 x)) (defun eighth (x) "Return the eighth element of the list X." (nth 7 x)) (defun ninth (x) "Return the ninth element of the list X." (nth 8 x)) (defun tenth (x) "Return the tenth element of the list X." (nth 9 x)) ;; XEmacs change: Emacs defines caar, cadr, cdar, and cddr in subr.el. (defun caar (x) "Return the `car' of the `car' of X." (car (car x))) (defun cadr (x) "Return the `car' of the `cdr' of X. Equivalent to `(second X)'." (car (cdr x))) (defun cdar (x) "Return the `cdr' of the `car' of X." (cdr (car x))) (defun cddr (x) "Return the `cdr' of the `cdr' of X." (cdr (cdr x))) (defun caaar (x) "Return the `car' of the `car' of the `car' of X." (car (car (car x)))) (defun caadr (x) "Return the `car' of the `car' of the `cdr' of X." (car (car (cdr x)))) (defun cadar (x) "Return the `car' of the `cdr' of the `car' of X." (car (cdr (car x)))) (defun caddr (x) "Return the `car' of the `cdr' of the `cdr' of X. Equivalent to `(third X)'." (car (cdr (cdr x)))) (defun cdaar (x) "Return the `cdr' of the `car' of the `car' of X." (cdr (car (car x)))) (defun cdadr (x) "Return the `cdr' of the `car' of the `cdr' of X." (cdr (car (cdr x)))) (defun cddar (x) "Return the `cdr' of the `cdr' of the `car' of X." (cdr (cdr (car x)))) (defun cdddr (x) "Return the `cdr' of the `cdr' of the `cdr' of X." (cdr (cdr (cdr x)))) (defun caaaar (x) "Return the `car' of the `car' of the `car' of the `car' of X." (car (car (car (car x))))) (defun caaadr (x) "Return the `car' of the `car' of the `car' of the `cdr' of X." (car (car (car (cdr x))))) (defun caadar (x) "Return the `car' of the `car' of the `cdr' of the `car' of X." (car (car (cdr (car x))))) (defun caaddr (x) "Return the `car' of the `car' of the `cdr' of the `cdr' of X." (car (car (cdr (cdr x))))) (defun cadaar (x) "Return the `car' of the `cdr' of the `car' of the `car' of X." (car (cdr (car (car x))))) (defun cadadr (x) "Return the `car' of the `cdr' of the `car' of the `cdr' of X." (car (cdr (car (cdr x))))) (defun caddar (x) "Return the `car' of the `cdr' of the `cdr' of the `car' of X." (car (cdr (cdr (car x))))) (defun cadddr (x) "Return the `car' of the `cdr' of the `cdr' of the `cdr' of X. Equivalent to `(fourth X)'." (car (cdr (cdr (cdr x))))) (defun cdaaar (x) "Return the `cdr' of the `car' of the `car' of the `car' of X." (cdr (car (car (car x))))) (defun cdaadr (x) "Return the `cdr' of the `car' of the `car' of the `cdr' of X." (cdr (car (car (cdr x))))) (defun cdadar (x) "Return the `cdr' of the `car' of the `cdr' of the `car' of X." (cdr (car (cdr (car x))))) (defun cdaddr (x) "Return the `cdr' of the `car' of the `cdr' of the `cdr' of X." (cdr (car (cdr (cdr x))))) (defun cddaar (x) "Return the `cdr' of the `cdr' of the `car' of the `car' of X." (cdr (cdr (car (car x))))) (defun cddadr (x) "Return the `cdr' of the `cdr' of the `car' of the `cdr' of X." (cdr (cdr (car (cdr x))))) (defun cdddar (x) "Return the `cdr' of the `cdr' of the `cdr' of the `car' of X." (cdr (cdr (cdr (car x))))) (defun cddddr (x) "Return the `cdr' of the `cdr' of the `cdr' of the `cdr' of X." (cdr (cdr (cdr (cdr x))))) ;;; `last' is implemented as a C primitive, as of 1998-11 (defun list* (first &rest rest) ; See compiler macro in cl-macs.el "Return a new list with specified args as elements, cons'd to last arg. Thus, `(list* A B C D)' is equivalent to `(nconc (list A B C) D)', or to `(cons A (cons B (cons C D)))'." (if rest (cons first (reduce #'cons rest :from-end t)) first)) ;; XEmacs; handle dotted lists properly, error on circularity and if LIST is ;; not a list. (defun ldiff (list sublist) "Return a copy of LIST with the tail SUBLIST removed. If SUBLIST is the same Lisp object as LIST, return nil. If SUBLIST is not present in the list structure of LIST (that is, it is not the cdr of some cons making up LIST), this function is equivalent to `copy-list'. LIST may be dotted." (check-argument-type #'listp list) (and list (not (eq list sublist)) (let ((before list) (evenp t) result) (prog1 (setq result (list (car list))) (while (and (setq list (cdr-safe list)) (not (eql list sublist))) (setcdr result (if (consp list) (list (car list)) list)) (setq result (cdr result) evenp (not evenp)) (if evenp (setq before (cdr before))) (if (eq before list) (error 'circular-list list))))))) ;;; `copy-list' is implemented as a C primitive, as of 1998-11 ;;; XEmacs; #'acons is in C. (defun pairlis (keys values &optional alist) "Make an alist from KEYS and VALUES. Return a new alist composed by associating KEYS to corresponding VALUES; the process stops as soon as KEYS or VALUES run out. If ALIST is non-nil, the new pairs are prepended to it." (nconc (mapcar* 'cons keys values) alist)) ;;; Miscellaneous. ;; XEmacs change (define-error 'cl-assertion-failed "Assertion failed") ;; XEmacs; provide a milquetoast amount of compatibility in our error symbols. (define-error 'type-error "Wrong type" 'wrong-type-argument) (define-error 'program-error "Error in your program" 'invalid-argument) (map-plist #'(lambda (key value) (mapc #'(lambda (error) (put error 'error-conditions (cons key (get error 'error-conditions)))) value)) '(program-error (wrong-number-of-arguments invalid-keyword-argument) type-error (wrong-type-argument malformed-list circular-list))) ;; XEmacs change: omit the autoload rules; we handle those a different way ;;; Define data for indentation and edebug. (mapc #'(lambda (entry) (mapc #'(lambda (func) (put func 'lisp-indent-function (nth 1 entry)) (put func 'lisp-indent-hook (nth 1 entry)) (or (get func 'edebug-form-spec) (put func 'edebug-form-spec (nth 2 entry)))) (car entry))) '(((defun* defmacro*) defun) ((function*) nil (&or symbolp ([&optional 'macro] 'lambda (&rest sexp) &rest form))) ((eval-when) 1 (sexp &rest form)) ((when unless) 1 (&rest form)) ((declare) nil (&rest sexp)) ((the) 1 (sexp &rest form)) ((case ecase typecase etypecase) 1 (form &rest (sexp &rest form))) ((block return-from) 1 (sexp &rest form)) ((return) nil (&optional form)) ((do do*) 2 ((&rest &or symbolp (symbolp &optional form form)) (form &rest form) &rest form)) ((dolist dotimes) 1 ((symbolp form &rest form) &rest form)) ((do-symbols) 1 ((symbolp form &optional form form) &rest form)) ((do-all-symbols) 1 ((symbolp form &optional form) &rest form)) ((psetq setf psetf) nil edebug-setq-form) ((progv) 2 (&rest form)) ((flet labels macrolet) 1 ((&rest (sexp sexp &rest form)) &rest form)) ((symbol-macrolet lexical-let lexical-let*) 1 ((&rest &or symbolp (symbolp form)) &rest form)) ((multiple-value-bind) 2 ((&rest symbolp) &rest form)) ((multiple-value-setq) 1 ((&rest symbolp) &rest form)) ((incf decf remf pop push pushnew shiftf rotatef) nil (&rest form)) ((letf letf*) 1 ((&rest (&rest form)) &rest form)) ((callf destructuring-bind) 2 (sexp form &rest form)) ((callf2) 3 (sexp form form &rest form)) ((loop) defun (&rest &or symbolp form)) ((ignore-errors) 0 (&rest form)))) ;;; Things to do after byte-compiler is loaded. XEmacs; no longer done here ;;; using bytecomp-load-hook, done explicitly in bytecomp.el ;;; instead. ;;; cl-load-hook is also gone; given that cl.el is dumped it is not ;;; available to non-dumped code, and dumped code should not be and is not ;;; using it anyway. (provide 'cl) ;;; arch-tag: 5f07fa74-f153-4524-9303-21f5be125851 ;;; cl.el ends here