(remq): New compiler macro.
[elisp/liece.git] / lisp / liece-clfns.el
1 ;;; liece-clfns.el --- compiler macros for emulating cl functions
2 ;; Copyright (C) 1998-2000 Daiki Ueno
3
4 ;; Author: Daiki Ueno <ueno@unixuser.org>
5 ;; Created: 2000-03-19
6 ;; Keywords: cl, compile
7
8 ;; This file is part of Liece.
9
10 ;; This program 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 2, or (at your option)
13 ;; any later version.
14
15 ;; This program 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.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25
26 ;;; Commentary:
27
28 ;; This file is borrowed from `gnus-clfns.el' from T-gnus.
29 ;; Avoid cl runtime functions for FSF Emacsen.
30
31 ;;; Code:
32
33 (defun liece-clfns-subr-fboundp (symbol)
34   "Return t if SYMBOL's function definition is a basic function."
35   (and (fboundp symbol)
36        (or (subrp (symbol-function symbol))
37            (string-equal (symbol-file symbol) "subr"))))
38
39 (if (featurep 'xemacs)
40     nil
41   (require 'cl)
42
43   (define-compiler-macro last (&whole form x &optional n)
44     (if (liece-clfns-subr-fboundp 'last)
45         form
46       (if n
47           `(let* ((x ,x) (n ,n) (m 0) (p x))
48              (while (consp p)
49                (incf m)
50                (pop p))
51              (if (<= n 0)
52                  p
53                (if (< n m)
54                    (nthcdr (- m n) x)
55                  x)))
56         `(let ((x ,x))
57            (while (consp (cdr x))
58              (pop x))
59            x))))
60
61   (define-compiler-macro remq (&whole form elt list)
62     (if (liece-clfns-subr-fboundp 'remq)
63         form
64       `(let ((elt ,elt)
65              (list ,list))
66          (if (memq elt list)
67              (delq elt (copy-sequence list))
68            list))))
69
70   (define-compiler-macro member-if (&whole form pred list)
71     (if (liece-clfns-subr-fboundp 'member-if)
72         form
73       `(let ((fn ,pred)
74              (seq ,list))
75          (while (and seq (not (funcall fn (car seq))))
76            (pop seq))
77          seq)))
78
79   (define-compiler-macro member-if-not (&whole form pred list)
80     (if (liece-clfns-subr-fboundp 'member-if-not)
81         form
82       `(let ((fn ,pred)
83              (seq ,list))
84          (while (and seq (funcall fn (car seq)))
85            (pop seq))
86          seq)))
87   
88   (define-compiler-macro delete-if (&whole form pred list)
89     (if (liece-clfns-subr-fboundp 'delete-if)
90         form
91       `(let* ((fn ,pred) (seq ,list) (p seq))
92          (while (and p (not (funcall fn (car p))))
93            (pop p))
94          (if p (delq (car p) seq)))))
95
96   (define-compiler-macro remove-if (&whole form pred list)
97     (if (liece-clfns-subr-fboundp 'remove-if)
98         form
99       `(let* ((fn ,pred) (seq (copy-sequence ,list)) (p seq))
100          (while (and p (not (funcall fn (car p))))
101            (pop p))
102          (if p (delq (car p) seq) seq))))
103
104   (define-compiler-macro remove-if-not (&whole form pred list)
105     (if (liece-clfns-subr-fboundp 'remove-if-not)
106         form
107       `(let* ((fn ,pred) (seq (copy-sequence ,list)) (p seq))
108          (while (and p (funcall fn (car p)))
109            (pop p))
110          (if p (delq (car p) seq) seq))))
111
112   (define-compiler-macro assoc-if (&whole form pred list)
113     (if (liece-clfns-subr-fboundp 'assoc-if)
114         form
115       `(let ((fn ,pred) (seq ,list))
116          (while (and seq (not (funcall fn (caar seq))))
117            (pop seq))
118          (car seq))))
119
120   (define-compiler-macro rassoc-if (&whole form pred list)
121     (if (liece-clfns-subr-fboundp 'rassoc-if)
122         form
123       `(let ((fn ,pred) (seq ,list))
124          (while (and seq (not (funcall fn (cdar seq))))
125            (pop seq))
126          (car seq)))))
127
128 (provide 'liece-clfns)
129
130 ;;; liece-clfns.el ends here