home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / browser2.zip / cl.el < prev    next >
Lisp/Scheme  |  1995-02-10  |  27KB  |  759 lines

  1. ;; $Id: cl.el,v 1.1 1995/02/10 18:00:52 mmann Exp $
  2. ;; cl.el --- Common Lisp extensions for GNU Emacs Lisp
  3.  
  4. ;; Copyright (C) 1993 Free Software Foundation, Inc.
  5.  
  6. ;; Author: Dave Gillespie <daveg@synaptics.com>
  7. ;; Version: 2.02
  8. ;; Keywords: extensions
  9.  
  10. ;; This file is part of GNU Emacs.
  11.  
  12. ;; GNU Emacs is free software; you can redistribute it and/or modify
  13. ;; it under the terms of the GNU General Public License as published by
  14. ;; the Free Software Foundation; either version 1, or (at your option)
  15. ;; any later version.
  16.  
  17. ;; GNU Emacs is distributed in the hope that it will be useful,
  18. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. ;; GNU General Public License for more details.
  21.  
  22. ;; You should have received a copy of the GNU General Public License
  23. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  24. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  25.  
  26. ;; Commentary:
  27.  
  28. ;; These are extensions to Emacs Lisp that provide a degree of
  29. ;; Common Lisp compatibility, beyond what is already built-in
  30. ;; in Emacs Lisp.
  31. ;;
  32. ;; This package was written by Dave Gillespie; it is a complete
  33. ;; rewrite of Cesar Quiroz's original cl.el package of December 1986.
  34. ;;
  35. ;; This package works with Emacs 18, Emacs 19, and Lucid Emacs 19.
  36. ;;
  37. ;; Bug reports, comments, and suggestions are welcome!
  38.  
  39. ;; This file contains the portions of the Common Lisp extensions
  40. ;; package which should always be present.
  41.  
  42.  
  43. ;; Future notes:
  44.  
  45. ;; Once Emacs 19 becomes standard, many things in this package which are
  46. ;; messy for reasons of compatibility can be greatly simplified.  For now,
  47. ;; I prefer to maintain one unified version.
  48.  
  49.  
  50. ;; Change Log:
  51.  
  52. ;; Version 2.02 (30 Jul 93):
  53. ;;  * Added "cl-compat.el" file, extra compatibility with old package.
  54. ;;  * Added `lexical-let' and `lexical-let*'.
  55. ;;  * Added `define-modify-macro', `callf', and `callf2'.
  56. ;;  * Added `ignore-errors'.
  57. ;;  * Changed `(setf (nthcdr N PLACE) X)' to work when N is zero.
  58. ;;  * Merged `*gentemp-counter*' into `*gensym-counter*'.
  59. ;;  * Extended `subseq' to allow negative START and END like `substring'.
  60. ;;  * Added `in-ref', `across-ref', `elements of-ref' loop clauses.
  61. ;;  * Added `concat', `vconcat' loop clauses.
  62. ;;  * Cleaned up a number of compiler warnings.
  63.  
  64. ;; Version 2.01 (7 Jul 93):
  65. ;;  * Added support for FSF version of Emacs 19.
  66. ;;  * Added `add-hook' for Emacs 18 users.
  67. ;;  * Added `defsubst*' and `symbol-macrolet'.
  68. ;;  * Added `maplist', `mapc', `mapl', `mapcan', `mapcon'.
  69. ;;  * Added `map', `concatenate', `reduce', `merge'.
  70. ;;  * Added `revappend', `nreconc', `tailp', `tree-equal'.
  71. ;;  * Added `assert', `check-type', `typecase', `typep', and `deftype'.
  72. ;;  * Added destructuring and `&environment' support to `defmacro*'.
  73. ;;  * Added destructuring to `loop', and added the following clauses:
  74. ;;      `elements', `frames', `overlays', `intervals', `buffers', `key-seqs'.
  75. ;;  * Renamed `delete' to `delete*' and `remove' to `remove*'.
  76. ;;  * Completed support for all keywords in `remove*', `substitute', etc.
  77. ;;  * Added `most-positive-float' and company.
  78. ;;  * Fixed hash tables to work with latest Lucid Emacs.
  79. ;;  * `proclaim' forms are no longer compile-time-evaluating; use `declaim'.
  80. ;;  * Syntax for `warn' declarations has changed.
  81. ;;  * Improved implementation of `random*'.
  82. ;;  * Moved most sequence functions to a new file, cl-seq.el.
  83. ;;  * Moved `eval-when' into cl-macs.el.
  84. ;;  * Moved `pushnew' and `adjoin' to cl.el for most common cases.
  85. ;;  * Moved `provide' forms down to ends of files.
  86. ;;  * Changed expansion of `pop' to something that compiles to better code.
  87. ;;  * Changed so that no patch is required for Emacs 19 byte compiler.
  88. ;;  * Made more things dependent on `optimize' declarations.
  89. ;;  * Added a partial implementation of struct print functions.
  90. ;;  * Miscellaneous minor changes.
  91.  
  92. ;; Version 2.00:
  93. ;;  * First public release of this package.
  94.  
  95.  
  96. ;; Code:
  97.  
  98. (defvar cl-emacs-type (cond ((or (and (fboundp 'epoch::version)
  99.                       (symbol-value 'epoch::version))
  100.                  (string-lessp emacs-version "19")) 18)
  101.                 ((string-match "Lucid" emacs-version) 'lucid)
  102.                 (t 19)))
  103.  
  104. (or (fboundp 'defalias) (fset 'defalias 'fset))
  105.  
  106. (defvar cl-optimize-speed 1)
  107. (defvar cl-optimize-safety 1)
  108.  
  109.  
  110. ;;; Keywords used in this package.
  111.  
  112. (defconst :test ':test)
  113. (defconst :test-not ':test-not)
  114. (defconst :key ':key)
  115. (defconst :start ':start)
  116. (defconst :start1 ':start1)
  117. (defconst :start2 ':start2)
  118. (defconst :end ':end)
  119. (defconst :end1 ':end1)
  120. (defconst :end2 ':end2)
  121. (defconst :count ':count)
  122. (defconst :initial-value ':initial-value)
  123. (defconst :size ':size)
  124. (defconst :from-end ':from-end)
  125. (defconst :rehash-size ':rehash-size)
  126. (defconst :rehash-threshold ':rehash-threshold)
  127. (defconst :allow-other-keys ':allow-other-keys)
  128.  
  129.  
  130. (defvar custom-print-functions nil
  131.   "This is a list of functions that format user objects for printing.
  132. Each function is called in turn with three arguments: the object, the
  133. stream, and the print level (currently ignored).  If it is able to
  134. print the object it returns true; otherwise it returns nil and the
  135. printer proceeds to the next function on the list.
  136.  
  137. This variable is not used at present, but it is defined in hopes that
  138. a future Emacs interpreter will be able to use it.")
  139.  
  140.  
  141. ;;; Predicates.
  142.  
  143. (defun eql (a b)    ; See compiler macro in cl-macs.el
  144.   "T if the two args are the same Lisp object.
  145. Floating-point numbers of equal value are `eql', but they may not be `eq'."
  146.   (if (numberp a)
  147.       (equal a b)
  148.     (eq a b)))
  149.  
  150.  
  151. ;;; Generalized variables.  These macros are defined here so that they
  152. ;;; can safely be used in .emacs files.
  153.  
  154. (defmacro incf (place &optional x)
  155.   "(incf PLACE [X]): increment PLACE by X (1 by default).
  156. PLACE may be a symbol, or any generalized variable allowed by `setf'.
  157. The return value is the incremented value of PLACE."
  158.   (if (symbolp place)
  159.       (list 'setq place (if x (list '+ place x) (list '1+ place)))
  160.     (list 'callf '+ place (or x 1))))
  161.  
  162. (defmacro decf (place &optional x)
  163.   "(decf PLACE [X]): decrement PLACE by X (1 by default).
  164. PLACE may be a symbol, or any generalized variable allowed by `setf'.
  165. The return value is the decremented value of PLACE."
  166.   (if (symbolp place)
  167.       (list 'setq place (if x (list '- place x) (list '1- place)))
  168.     (list 'callf '- place (or x 1))))
  169.  
  170. (defmacro pop (place)
  171.   "(pop PLACE): remove and return the head of the list stored in PLACE.
  172. Analogous to (prog1 (car PLACE) (setf PLACE (cdr PLACE))), though more
  173. careful about evaluating each argument only once and in the right order.
  174. PLACE may be a symbol, or any generalized variable allowed by `setf'."
  175.   (if (symbolp place)
  176.       (list 'car (list 'prog1 place (list 'setq place (list 'cdr place))))
  177.     (cl-do-pop place)))
  178.  
  179. (defmacro push (x place)
  180.   "(push X PLACE): insert X at the head of the list stored in PLACE.
  181. Analogous to (setf PLACE (cons X PLACE)), though more careful about
  182. evaluating each argument only once and in the right order.  PLACE may
  183. be a symbol, or any generalized variable allowed by `setf'."
  184.   (if (symbolp place) (list 'setq place (list 'cons x place))
  185.     (list 'callf2 'cons x place)))
  186.  
  187. (defmacro pushnew (x place &rest keys)
  188.   "(pushnew X PLACE): insert X at the head of the list if not already there.
  189. Like (push X PLACE), except that the list is unmodified if X is `eql' to
  190. an element already on the list.
  191. Keywords supported:  :test :test-not :key"
  192.   (if (symbolp place) (list 'setq place (list* 'adjoin x place keys))
  193.     (list* 'callf2 'adjoin x place keys)))
  194.  
  195. (defun cl-set-elt (seq n val)
  196.   (if (listp seq) (setcar (nthcdr n seq) val) (aset seq n val)))
  197.  
  198. (defun cl-set-nthcdr (n list x)
  199.   (if (<= n 0) x (setcdr (nthcdr (1- n) list) x) list))
  200.  
  201. (defun cl-set-buffer-substring (start end val)
  202.   (save-excursion (delete-region start end)
  203.           (goto-char start)
  204.           (insert val)
  205.           val))
  206.  
  207. (defun cl-set-substring (str start end val)
  208.   (if end (if (< end 0) (incf end (length str)))
  209.     (setq end (length str)))
  210.   (if (< start 0) (incf start str))
  211.   (concat (and (> start 0) (substring str 0 start))
  212.       val
  213.       (and (< end (length str)) (substring str end))))
  214.  
  215.  
  216. ;;; Control structures.
  217.  
  218. ;;; These macros are so simple and so often-used that it's better to have
  219. ;;; them all the time than to load them from cl-macs.el.
  220.  
  221. (defmacro when (cond &rest body)
  222.   "(when COND BODY...): if COND yields non-nil, do BODY, else return nil."
  223.   (list 'if cond (cons 'progn body)))
  224.  
  225. (defmacro unless (cond &rest body)
  226.   "(unless COND BODY...): if COND yields nil, do BODY, else return nil."
  227.   (cons 'if (cons cond (cons nil body))))
  228.  
  229. (defun cl-map-extents (&rest cl-args)
  230.   (if (fboundp 'next-overlay-at) (apply 'cl-map-overlays cl-args)
  231.     (if (fboundp 'map-extents) (apply 'map-extents cl-args))))
  232.  
  233.  
  234. ;;; Blocks and exits.
  235.  
  236. (defalias 'cl-block-wrapper 'identity)
  237. (defalias 'cl-block-throw 'throw)
  238.  
  239.  
  240. ;;; Multiple values.  True multiple values are not supported, or even
  241. ;;; simulated.  Instead, multiple-value-bind and friends simply expect
  242. ;;; the target form to return the values as a list.
  243.  
  244. (defalias 'values 'list)
  245. (defalias 'values-list 'identity)
  246. (defalias 'multiple-value-list 'identity)
  247. (defalias 'multiple-value-call 'apply)  ; only works for one arg
  248. (defalias 'nth-value 'nth)
  249.  
  250.  
  251. ;;; Macros.
  252.  
  253. (defvar cl-macro-environment nil)
  254. (defvar cl-old-macroexpand (prog1 (symbol-function 'macroexpand)
  255.                  (defalias 'macroexpand 'cl-macroexpand)))
  256.  
  257. (defun cl-macroexpand (cl-macro &optional cl-env)
  258.   (let ((cl-macro-environment cl-env))
  259.     (while (progn (setq cl-macro (funcall cl-old-macroexpand cl-macro cl-env))
  260.           (and (symbolp cl-macro)
  261.                (cdr (assq (symbol-name cl-macro) cl-env))))
  262.       (setq cl-macro (cadr (assq (symbol-name cl-macro) cl-env))))
  263.     cl-macro))
  264.  
  265.  
  266. ;;; Declarations.
  267.  
  268. (defvar cl-compiling-file nil)
  269. (defun cl-compiling-file ()
  270.   (or cl-compiling-file
  271.       (and (boundp 'outbuffer) (bufferp (symbol-value 'outbuffer))
  272.        (equal (buffer-name (symbol-value 'outbuffer))
  273.           " *Compiler Output*"))))
  274.  
  275. (defvar cl-proclaims-deferred nil)
  276.  
  277. (defun proclaim (spec)
  278.   (if (fboundp 'cl-do-proclaim) (cl-do-proclaim spec t)
  279.     (push spec cl-proclaims-deferred))
  280.   nil)
  281.  
  282. (defmacro declaim (&rest specs)
  283.   (let ((body (mapcar (function (lambda (x) (list 'proclaim (list 'quote x))))
  284.               specs)))
  285.     (if (cl-compiling-file) (list* 'eval-when '(compile load eval) body)
  286.       (cons 'progn body))))   ; avoid loading cl-macs.el for eval-when
  287.  
  288.  
  289. ;;; Symbols.
  290.  
  291. (defun cl-random-time ()
  292.   (let* ((time (copy-sequence (current-time-string))) (i (length time)) (v 0))
  293.     (while (>= (decf i) 0) (setq v (+ (* v 3) (aref time i))))
  294.     v))
  295.  
  296. (defvar *gensym-counter* (* (logand (cl-random-time) 1023) 100))
  297.  
  298.  
  299. ;;; Numbers.
  300.  
  301. (defun floatp-safe (x)
  302.   "T if OBJECT is a floating point number.
  303. On Emacs versions that lack floating-point support, this function
  304. always returns nil."
  305.   (and (numberp x) (not (integerp x))))
  306.  
  307. (defun plusp (x)
  308.   "T if NUMBER is positive."
  309.   (> x 0))
  310.  
  311. (defun minusp (x)
  312.   "T if NUMBER is negative."
  313.   (< x 0))
  314.  
  315. (defun oddp (x)
  316.   "T if INTEGER is odd."
  317.   (eq (logand x 1) 1))
  318.  
  319. (defun evenp (x)
  320.   "T if INTEGER is even."
  321.   (eq (logand x 1) 0))
  322.  
  323. (defun cl-abs (x)
  324.   "Return the absolute value of ARG."
  325.   (if (>= x 0) x (- x)))
  326. (or (fboundp 'abs) (defalias 'abs 'cl-abs))   ; This is built-in to Emacs 19
  327.  
  328. (defvar *random-state* (vector 'cl-random-state-tag -1 30 (cl-random-time)))
  329.  
  330. ;;; We use `eval' in case VALBITS differs from compile-time to load-time.
  331. (defconst most-positive-fixnum (eval '(lsh -1 -1)))
  332. (defconst most-negative-fixnum (eval '(- -1 (lsh -1 -1))))
  333.  
  334. ;;; The following are actually set by cl-float-limits.
  335. (defconst most-positive-float nil)
  336. (defconst most-negative-float nil)
  337. (defconst least-positive-float nil)
  338. (defconst least-negative-float nil)
  339. (defconst least-positive-normalized-float nil)
  340. (defconst least-negative-normalized-float nil)
  341. (defconst float-epsilon nil)
  342. (defconst float-negative-epsilon nil)
  343.  
  344.  
  345. ;;; Sequence functions.
  346.  
  347. (defalias 'copy-seq 'copy-sequence)
  348.  
  349. (defun mapcar* (cl-func cl-x &rest cl-rest)
  350.   "Apply FUNCTION to each element of SEQ, and make a list of the results.
  351. If there are several SEQs, FUNCTION is called with that many arguments,
  352. and mapping stops as soon as the shortest list runs out.  With just one
  353. SEQ, this is like `mapcar'.  With several, it is like the Common Lisp
  354. `mapcar' function extended to arbitrary sequence types."
  355.   (if cl-rest
  356.       (if (or (cdr cl-rest) (nlistp cl-x) (nlistp (car cl-rest)))
  357.       (cl-mapcar-many cl-func (cons cl-x cl-rest))
  358.     (let ((cl-res nil) (cl-y (car cl-rest)))
  359.       (while (and cl-x cl-y)
  360.         (push (funcall cl-func (pop cl-x) (pop cl-y)) cl-res))
  361.       (nreverse cl-res)))
  362.     (mapcar cl-func cl-x)))
  363.  
  364.  
  365. ;;; List functions.
  366.  
  367. (defalias 'first 'car)
  368. (defalias 'rest 'cdr)
  369. (defalias 'endp 'null)
  370.  
  371. (defun second (x)
  372.   "Return the second element of the list LIST."
  373.   (car (cdr x)))
  374.  
  375. (defun third (x)
  376.   "Return the third element of the list LIST."
  377.   (car (cdr (cdr x))))
  378.  
  379. (defun fourth (x)
  380.   "Return the fourth element of the list LIST."
  381.   (nth 3 x))
  382.  
  383. (defun fifth (x)
  384.   "Return the fifth element of the list LIST."
  385.   (nth 4 x))
  386.  
  387. (defun sixth (x)
  388.   "Return the sixth element of the list LIST."
  389.   (nth 5 x))
  390.  
  391. (defun seventh (x)
  392.   "Return the seventh element of the list LIST."
  393.   (nth 6 x))
  394.  
  395. (defun eighth (x)
  396.   "Return the eighth element of the list LIST."
  397.   (nth 7 x))
  398.  
  399. (defun ninth (x)
  400.   "Return the ninth element of the list LIST."
  401.   (nth 8 x))
  402.  
  403. (defun tenth (x)
  404.   "Return the tenth element of the list LIST."
  405.   (nth 9 x))
  406.  
  407. (defun caar (x)
  408.   "Return the `car' of the `car' of X."
  409.   (car (car x)))
  410.  
  411. (defun cadr (x)
  412.   "Return the `car' of the `cdr' of X."
  413.   (car (cdr x)))
  414.  
  415. (defun cdar (x)
  416.   "Return the `cdr' of the `car' of X."
  417.   (cdr (car x)))
  418.  
  419. (defun cddr (x)
  420.   "Return the `cdr' of the `cdr' of X."
  421.   (cdr (cdr x)))
  422.  
  423. (defun caaar (x)
  424.   "Return the `car' of the `car' of the `car' of X."
  425.   (car (car (car x))))
  426.  
  427. (defun caadr (x)
  428.   "Return the `car' of the `car' of the `cdr' of X."
  429.   (car (car (cdr x))))
  430.  
  431. (defun cadar (x)
  432.   "Return the `car' of the `cdr' of the `car' of X."
  433.   (car (cdr (car x))))
  434.  
  435. (defun caddr (x)
  436.   "Return the `car' of the `cdr' of the `cdr' of X."
  437.   (car (cdr (cdr x))))
  438.  
  439. (defun cdaar (x)
  440.   "Return the `cdr' of the `car' of the `car' of X."
  441.   (cdr (car (car x))))
  442.  
  443. (defun cdadr (x)
  444.   "Return the `cdr' of the `car' of the `cdr' of X."
  445.   (cdr (car (cdr x))))
  446.  
  447. (defun cddar (x)
  448.   "Return the `cdr' of the `cdr' of the `car' of X."
  449.   (cdr (cdr (car x))))
  450.  
  451. (defun cdddr (x)
  452.   "Return the `cdr' of the `cdr' of the `cdr' of X."
  453.   (cdr (cdr (cdr x))))
  454.  
  455. (defun caaaar (x)
  456.   "Return the `car' of the `car' of the `car' of the `car' of X."
  457.   (car (car (car (car x)))))
  458.  
  459. (defun caaadr (x)
  460.   "Return the `car' of the `car' of the `car' of the `cdr' of X."
  461.   (car (car (car (cdr x)))))
  462.  
  463. (defun caadar (x)
  464.   "Return the `car' of the `car' of the `cdr' of the `car' of X."
  465.   (car (car (cdr (car x)))))
  466.  
  467. (defun caaddr (x)
  468.   "Return the `car' of the `car' of the `cdr' of the `cdr' of X."
  469.   (car (car (cdr (cdr x)))))
  470.  
  471. (defun cadaar (x)
  472.   "Return the `car' of the `cdr' of the `car' of the `car' of X."
  473.   (car (cdr (car (car x)))))
  474.  
  475. (defun cadadr (x)
  476.   "Return the `car' of the `cdr' of the `car' of the `cdr' of X."
  477.   (car (cdr (car (cdr x)))))
  478.  
  479. (defun caddar (x)
  480.   "Return the `car' of the `cdr' of the `cdr' of the `car' of X."
  481.   (car (cdr (cdr (car x)))))
  482.  
  483. (defun cadddr (x)
  484.   "Return the `car' of the `cdr' of the `cdr' of the `cdr' of X."
  485.   (car (cdr (cdr (cdr x)))))
  486.  
  487. (defun cdaaar (x)
  488.   "Return the `cdr' of the `car' of the `car' of the `car' of X."
  489.   (cdr (car (car (car x)))))
  490.  
  491. (defun cdaadr (x)
  492.   "Return the `cdr' of the `car' of the `car' of the `cdr' of X."
  493.   (cdr (car (car (cdr x)))))
  494.  
  495. (defun cdadar (x)
  496.   "Return the `cdr' of the `car' of the `cdr' of the `car' of X."
  497.   (cdr (car (cdr (car x)))))
  498.  
  499. (defun cdaddr (x)
  500.   "Return the `cdr' of the `car' of the `cdr' of the `cdr' of X."
  501.   (cdr (car (cdr (cdr x)))))
  502.  
  503. (defun cddaar (x)
  504.   "Return the `cdr' of the `cdr' of the `car' of the `car' of X."
  505.   (cdr (cdr (car (car x)))))
  506.  
  507. (defun cddadr (x)
  508.   "Return the `cdr' of the `cdr' of the `car' of the `cdr' of X."
  509.   (cdr (cdr (car (cdr x)))))
  510.  
  511. (defun cdddar (x)
  512.   "Return the `cdr' of the `cdr' of the `cdr' of the `car' of X."
  513.   (cdr (cdr (cdr (car x)))))
  514.  
  515. (defun cddddr (x)
  516.   "Return the `cdr' of the `cdr' of the `cdr' of the `cdr' of X."
  517.   (cdr (cdr (cdr (cdr x)))))
  518.  
  519. (defun last (x &optional n)
  520.   "Returns the last link in the list LIST.
  521. With optional argument N, returns Nth-to-last link (default 1)."
  522.   (if n
  523.       (let ((m 0) (p x))
  524.     (while (consp p) (incf m) (pop p))
  525.     (if (<= n 0) p
  526.       (if (< n m) (nthcdr (- m n) x) x)))
  527.     (while (consp (cdr x)) (pop x))
  528.     x))
  529.  
  530. (defun butlast (x &optional n)
  531.   "Returns a copy of LIST with the last N elements removed."
  532.   (if (and n (<= n 0)) x
  533.     (nbutlast (copy-sequence x) n)))
  534.  
  535. (defun nbutlast (x &optional n)
  536.   "Modifies LIST to remove the last N elements."
  537.   (let ((m (length x)))
  538.     (or n (setq n 1))
  539.     (and (< n m)
  540.      (progn
  541.        (if (> n 0) (setcdr (nthcdr (- (1- m) n) x) nil))
  542.        x))))
  543.  
  544. (defun list* (arg &rest rest)   ; See compiler macro in cl-macs.el
  545.   "Return a new list with specified args as elements, cons'd to last arg.
  546. Thus, `(list* A B C D)' is equivalent to `(nconc (list A B C) D)', or to
  547. `(cons A (cons B (cons C D)))'."
  548.   (cond ((not rest) arg)
  549.     ((not (cdr rest)) (cons arg (car rest)))
  550.     (t (let* ((n (length rest))
  551.           (copy (copy-sequence rest))
  552.           (last (nthcdr (- n 2) copy)))
  553.          (setcdr last (car (cdr last)))
  554.          (cons arg copy)))))
  555.  
  556. (defun ldiff (list sublist)
  557.   "Return a copy of LIST with the tail SUBLIST removed."
  558.   (let ((res nil))
  559.     (while (and (consp list) (not (eq list sublist)))
  560.       (push (pop list) res))
  561.     (nreverse res)))
  562.  
  563. (defun copy-list (list)
  564.   "Return a copy of a list, which may be a dotted list.
  565. The elements of the list are not copied, just the list structure itself."
  566.   (if (consp list)
  567.       (let ((res nil))
  568.     (while (consp list) (push (pop list) res))
  569.     (prog1 (nreverse res) (setcdr res list)))
  570.     (car list)))
  571.  
  572. (defun cl-maclisp-member (item list)
  573.   (while (and list (not (equal item (car list)))) (setq list (cdr list)))
  574.   list)
  575.  
  576. ;;; Define an Emacs 19-compatible `member' for the benefit of Emacs 18 users.
  577. (or (and (fboundp 'member) (subrp (symbol-function 'member)))
  578.     (defalias 'member 'cl-maclisp-member))
  579.  
  580. (defalias 'cl-member 'memq)   ; for compatibility with old CL package
  581. (defalias 'cl-floor 'floor*)
  582. (defalias 'cl-ceiling 'ceiling*)
  583. (defalias 'cl-truncate 'truncate*)
  584. (defalias 'cl-round 'round*)
  585. (defalias 'cl-mod 'mod*)
  586.  
  587. (defun adjoin (cl-item cl-list &rest cl-keys)  ; See compiler macro in cl-macs
  588.   "Return ITEM consed onto the front of LIST only if it's not already there.
  589. Otherwise, return LIST unmodified.
  590. Keywords supported:  :test :test-not :key"
  591.   (cond ((or (equal cl-keys '(:test eq))
  592.          (and (null cl-keys) (not (numberp cl-item))))
  593.      (if (memq cl-item cl-list) cl-list (cons cl-item cl-list)))
  594.     ((or (equal cl-keys '(:test equal)) (null cl-keys))
  595.      (if (member cl-item cl-list) cl-list (cons cl-item cl-list)))
  596.     (t (apply 'cl-adjoin cl-item cl-list cl-keys))))
  597.  
  598. (defun subst (cl-new cl-old cl-tree &rest cl-keys)
  599.   "Substitute NEW for OLD everywhere in TREE (non-destructively).
  600. Return a copy of TREE with all elements `eql' to OLD replaced by NEW.
  601. Keywords supported:  :test :test-not :key"
  602.   (if (or cl-keys (and (numberp cl-old) (not (integerp cl-old))))
  603.       (apply 'sublis (list (cons cl-old cl-new)) cl-tree cl-keys)
  604.     (cl-do-subst cl-new cl-old cl-tree)))
  605.  
  606. (defun cl-do-subst (cl-new cl-old cl-tree)
  607.   (cond ((eq cl-tree cl-old) cl-new)
  608.     ((consp cl-tree)
  609.      (let ((a (cl-do-subst cl-new cl-old (car cl-tree)))
  610.            (d (cl-do-subst cl-new cl-old (cdr cl-tree))))
  611.        (if (and (eq a (car cl-tree)) (eq d (cdr cl-tree)))
  612.            cl-tree (cons a d))))
  613.     (t cl-tree)))
  614.  
  615. (defun acons (a b c) (cons (cons a b) c))
  616. (defun pairlis (a b &optional c) (nconc (mapcar* 'cons a b) c))
  617.  
  618.  
  619. ;;; Miscellaneous.
  620.  
  621. (put 'cl-assertion-failed 'error-conditions '(error))
  622. (put 'cl-assertion-failed 'error-message "Assertion failed")
  623.  
  624. ;;; This is defined in Emacs 19; define it here for Emacs 18 users.
  625. (defun cl-add-hook (hook func &optional append)
  626.   "Add to hook variable HOOK the function FUNC.
  627. FUNC is not added if it already appears on the list stored in HOOK."
  628.   (let ((old (and (boundp hook) (symbol-value hook))))
  629.     (and (listp old) (not (eq (car old) 'lambda))
  630.      (setq old (list old)))
  631.     (and (not (member func old))
  632.      (set hook (if append (nconc old (list func)) (cons func old))))))
  633. (or (fboundp 'add-hook) (defalias 'add-hook 'cl-add-hook))
  634.  
  635.  
  636. ;;; Autoload the other portions of the package.
  637. (mapcar (function
  638.      (lambda (set)
  639.        (mapcar (function
  640.             (lambda (func)
  641.               (autoload func (car set) nil nil (nth 1 set))))
  642.            (cddr set))))
  643.     '(("cl-extra" nil
  644.        coerce equalp cl-map-keymap maplist mapc mapl mapcan mapcon
  645.        cl-map-keymap cl-map-keymap-recursively cl-map-intervals
  646.        cl-map-overlays cl-set-frame-visible-p cl-float-limits
  647.        gcd lcm isqrt expt floor* ceiling* truncate* round*
  648.        mod* rem* signum random* make-random-state random-state-p
  649.        subseq concatenate cl-mapcar-many map some every notany
  650.        notevery revappend nreconc list-length tailp copy-tree get* getf
  651.        cl-set-getf cl-do-remf remprop make-hash-table cl-hash-lookup
  652.        gethash cl-puthash remhash clrhash maphash hash-table-p
  653.        hash-table-count cl-progv-before cl-prettyexpand
  654.        cl-macroexpand-all)
  655.       ("cl-seq" nil
  656.        reduce fill replace remq remove remove* remove-if remove-if-not
  657.        delete delete* delete-if delete-if-not remove-duplicates
  658.        delete-duplicates substitute substitute-if substitute-if-not
  659.        nsubstitute nsubstitute-if nsubstitute-if-not find find-if
  660.        find-if-not position position-if position-if-not count count-if
  661.        count-if-not mismatch search sort* stable-sort merge member*
  662.        member-if member-if-not cl-adjoin assoc* assoc-if assoc-if-not
  663.        rassoc* rassoc rassoc-if rassoc-if-not union nunion intersection
  664.        nintersection set-difference nset-difference set-exclusive-or
  665.        nset-exclusive-or subsetp subst-if subst-if-not nsubst nsubst-if
  666.        nsubst-if-not sublis nsublis tree-equal)
  667.       ("cl-macs" nil
  668.        gensym gentemp typep cl-do-pop get-setf-method
  669.        cl-struct-setf-expander compiler-macroexpand cl-compile-time-init)
  670.       ("cl-macs" t
  671.        defun* defmacro* function* destructuring-bind eval-when
  672.        eval-when-compile load-time-value case ecase typecase etypecase
  673.        block return return-from loop do do* dolist dotimes do-symbols
  674.        do-all-symbols psetq progv flet labels macrolet symbol-macrolet
  675.        lexical-let lexical-let* multiple-value-bind multiple-value-setq
  676.        locally the declare define-setf-method defsetf define-modify-macro
  677.        setf psetf remf shiftf rotatef letf letf* callf callf2 defstruct
  678.        check-type assert ignore-errors define-compiler-macro)))
  679.  
  680. ;;; Define data for indentation and edebug.
  681. (mapcar (function
  682.      (lambda (entry)
  683.        (mapcar (function
  684.             (lambda (func)
  685.               (put func 'lisp-indent-function (nth 1 entry))
  686.               (put func 'lisp-indent-hook (nth 1 entry))
  687.               (or (get func 'edebug-form-spec)
  688.               (put func 'edebug-form-spec (nth 2 entry)))))
  689.            (car entry))))
  690.     '(((defun* defmacro*) 2)
  691.       ((function*) nil
  692.        (&or symbolp ([&optional 'macro] 'lambda (&rest sexp) &rest form)))
  693.       ((eval-when) 1 (sexp &rest form))
  694.       ((when unless) 1 (&rest form))
  695.       ((declare) nil (&rest sexp))
  696.       ((the) 1 (sexp &rest form))
  697.       ((case ecase typecase etypecase) 1 (form &rest (sexp &rest form)))
  698.       ((block return-from) 1 (sexp &rest form))
  699.       ((return) nil (&optional form))
  700.       ((do do*) 2 ((&rest &or symbolp (symbolp &optional form form))
  701.                (form &rest form)
  702.                &rest form))
  703.       ((dolist dotimes) 1 ((symbolp form &rest form) &rest form))
  704.       ((do-symbols) 1 ((symbolp form &optional form form) &rest form))
  705.       ((do-all-symbols) 1 ((symbolp form &optional form) &rest form))
  706.       ((psetq setf psetf) nil edebug-setq-form)
  707.       ((progv) 2 (&rest form))
  708.       ((flet labels macrolet) 1
  709.        ((&rest (sexp sexp &rest form)) &rest form))
  710.       ((symbol-macrolet lexical-let lexical-let*) 1
  711.        ((&rest &or symbolp (symbolp form)) &rest form))
  712.       ((multiple-value-bind) 2 ((&rest symbolp) &rest form))
  713.       ((multiple-value-setq) 1 ((&rest symbolp) &rest form))
  714.       ((incf decf remf pop push pushnew shiftf rotatef) nil (&rest form))
  715.       ((letf letf*) 1 ((&rest (&rest form)) &rest form))
  716.       ((callf destructuring-bind) 2 (sexp form &rest form))
  717.       ((callf2) 3 (sexp form form &rest form))
  718.       ((loop) nil (&rest &or symbolp form))
  719.       ((ignore-errors) 0 (&rest form))))
  720.  
  721.  
  722. ;;; This goes here so that cl-macs can find it if it loads right now.
  723. (provide 'cl-19)     ; usage: (require 'cl-19 "cl")
  724.  
  725.  
  726. ;;; Things to do after byte-compiler is loaded.
  727. ;;; As a side effect, we cause cl-macs to be loaded when compiling, so
  728. ;;; that the compiler-macros defined there will be present.
  729.  
  730. (defvar cl-hacked-flag nil)
  731. (defun cl-hack-byte-compiler ()
  732.   (if (and (not cl-hacked-flag) (fboundp 'byte-compile-file-form))
  733.       (progn
  734.     (cl-compile-time-init)   ; in cl-macs.el
  735.     (setq cl-hacked-flag t))))
  736.  
  737. ;;; Try it now in case the compiler has already been loaded.
  738. (cl-hack-byte-compiler)
  739.  
  740. ;;; Also make a hook in case compiler is loaded after this file.
  741. ;;; The compiler doesn't call any hooks when it loads or runs, but
  742. ;;; we can take advantage of the fact that emacs-lisp-mode will be
  743. ;;; called when the compiler reads in the file to be compiled.
  744. ;;; BUG: If the first compilation is `byte-compile' rather than
  745. ;;; `byte-compile-file', we lose.  Oh, well.
  746. (add-hook 'emacs-lisp-mode-hook 'cl-hack-byte-compiler)
  747.  
  748.  
  749. ;;; The following ensures that packages which expect the old-style cl.el
  750. ;;; will be happy with this one.
  751.  
  752. (provide 'cl)
  753.  
  754. (provide 'mini-cl)   ; for Epoch
  755.  
  756. (run-hooks 'cl-load-hook)
  757.  
  758. ;;; cl.el ends here
  759.