38589498afaf50212e8af04e2dd75af0ba6d63bc
[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 (require 'pym)
34
35 (defmacro liece-clfns-subr-fboundp (symbol)
36   "Return t if SYMBOL's function definition is a basic function."
37   (or (subr-fboundp symbol)
38       (string-equal (symbol-file symbol) "subr")))
39
40 (if (featurep 'xemacs)
41     nil
42   (require 'cl)
43
44   (define-compiler-macro last (&whole form x &optional n)
45     (if (liece-clfns-subr-fboundp 'last)
46         form
47       (if n
48           `(let* ((x ,x) (n ,n) (m 0) (p x))
49              (while (consp p)
50                (incf m)
51                (pop p))
52              (if (<= n 0)
53                  p
54                (if (< n m)
55                    (nthcdr (- m n) x)
56                  x)))
57         `(let ((x ,x))
58            (while (consp (cdr x))
59              (pop x))
60            x))))
61
62   (define-compiler-macro member-if (&whole form pred list)
63     (if (liece-clfns-subr-fboundp 'member-if)
64         form
65       `(let ((fn ,pred)
66              (seq ,list))
67          (while (and seq (not (funcall fn (car seq))))
68            (pop seq))
69          seq)))
70
71   (define-compiler-macro member-if-not (&whole form pred list)
72     (if (liece-clfns-subr-fboundp 'member-if-not)
73         form
74       `(let ((fn ,pred)
75              (seq ,list))
76          (while (and seq (funcall fn (car seq)))
77            (pop seq))
78          seq)))
79   
80   (define-compiler-macro delete-if (&whole form pred list)
81     (if (liece-clfns-subr-fboundp 'delete-if)
82         form
83       `(let* ((fn ,pred) (seq ,list) (p seq))
84          (while (and p (not (funcall fn (car p))))
85            (pop p))
86          (if p (delq (car p) seq)))))
87
88   (define-compiler-macro remove-if (&whole form pred list)
89     (if (liece-clfns-subr-fboundp 'remove-if)
90         form
91       `(let* ((fn ,pred) (seq (copy-sequence ,list)) (p seq))
92          (while (and p (not (funcall fn (car p))))
93            (pop p))
94          (if p (delq (car p) seq) seq))))
95
96   (define-compiler-macro remove-if-not (&whole form pred list)
97     (if (liece-clfns-subr-fboundp 'remove-if-not)
98         form
99       `(let* ((fn ,pred) (seq (copy-sequence ,list)) (p seq))
100          (while (and p (funcall fn (car p)))
101            (pop p))
102          (if p (delq (car p) seq) seq))))
103
104   (define-compiler-macro assoc-if (&whole form pred list)
105     (if (liece-clfns-subr-fboundp 'assoc-if)
106         form
107       `(let ((fn ,pred) (seq ,list))
108          (while (and seq (not (funcall fn (caar seq))))
109            (pop seq))
110          (car seq))))
111
112   (define-compiler-macro rassoc-if (&whole form pred list)
113     (if (liece-clfns-subr-fboundp 'rassoc-if)
114         form
115       `(let ((fn ,pred) (seq ,list))
116          (while (and seq (not (funcall fn (cdar seq))))
117            (pop seq))
118          (car seq)))))
119
120 (provide 'liece-clfns)
121
122 ;;; liece-clfns.el ends here