Mercurial > hg > xemacs-beta
comparison lisp/edebug/cl-specs.el @ 70:131b0175ea99 r20-0b30
Import from CVS: tag r20-0b30
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:02:59 +0200 |
parents | b82b59fe008d |
children | b9518feda344 |
comparison
equal
deleted
inserted
replaced
69:804d1389bcd6 | 70:131b0175ea99 |
---|---|
2 | 2 |
3 ;; Copyright (C) 1993 Free Software Foundation, Inc. | 3 ;; Copyright (C) 1993 Free Software Foundation, Inc. |
4 ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu> | 4 ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu> |
5 ;; Keywords: lisp, tools, maint | 5 ;; Keywords: lisp, tools, maint |
6 | 6 |
7 ;; This file is part of XEmacs. | 7 ;; LCD Archive Entry: |
8 | 8 ;; cl-specs.el|Daniel LaLiberte|liberte@cs.uiuc.edu |
9 ;; XEmacs is free software; you can redistribute it and/or modify it | 9 ;; |Edebug specs for cl.el |
10 ;; under the terms of the GNU General Public License as published by | 10 ;; |$Date: 1996/12/18 22:43:07 $|$Revision: 1.1.1.1 $|~/modes/cl-specs.el| |
11 | |
12 ;; This file is part of GNU Emacs. | |
13 | |
14 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
15 ;; it under the terms of the GNU General Public License as published by | |
11 ;; the Free Software Foundation; either version 2, or (at your option) | 16 ;; the Free Software Foundation; either version 2, or (at your option) |
12 ;; any later version. | 17 ;; any later version. |
13 | 18 |
14 ;; XEmacs is distributed in the hope that it will be useful, | 19 ;; GNU Emacs is distributed in the hope that it will be useful, |
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | 20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17 ;; GNU General Public License for more details. | 22 ;; GNU General Public License for more details. |
18 | 23 |
19 ;; You should have received a copy of the GNU General Public License | 24 ;; You should have received a copy of the GNU General Public License |
20 ;; along with XEmacs; see the file COPYING. If not, write to the Free | 25 ;; along with GNU Emacs; see the file COPYING. If not, write to |
21 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA | 26 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
22 ;; 02111-1307, USA. | 27 |
23 | 28 ;;;; Commentary: |
24 ;;; Synched up with: Not in FSF | |
25 | |
26 ;;; Commentary: | |
27 | |
28 ;; LCD Archive Entry: | |
29 ;; cl-specs.el|Daniel LaLiberte|liberte@cs.uiuc.edu | |
30 ;; |Edebug specs for cl.el | |
31 ;; |$Date: 1996/12/18 03:54:29 $|$Revision: 1.1.1.2 $|~/modes/cl-specs.el| | |
32 | 29 |
33 ;; These specs are to be used with edebug.el version 3.3 or later and | 30 ;; These specs are to be used with edebug.el version 3.3 or later and |
34 ;; cl.el version 2.03 or later, by Dave Gillespie <daveg@synaptics.com>. | 31 ;; cl.el version 2.03 or later, by Dave Gillespie <daveg@synaptics.com>. |
35 | 32 |
36 ;; This file need not be byte-compiled, but it shouldn't hurt. | 33 ;; This file need not be byte-compiled, but it shouldnt hurt. |
37 | |
38 ;;; Code: | |
39 | 34 |
40 (provide 'cl-specs) | 35 (provide 'cl-specs) |
41 ;; Do the above provide before the following require. | 36 ;; Do the above provide before the following require. |
42 ;; Otherwise if you load this before edebug if cl is already loaded | 37 ;; Otherwise if you load this before edebug if cl is already loaded |
43 ;; an infinite loading loop would occur. | 38 ;; an infinite loading loop would occur. |
472 (&optional ["of-type" loop-d-type-spec])) | 467 (&optional ["of-type" loop-d-type-spec])) |
473 | 468 |
474 (def-edebug-spec loop-d-type-spec | 469 (def-edebug-spec loop-d-type-spec |
475 (&or (loop-d-type-spec . [&or nil loop-d-type-spec]) cl-type-spec)) | 470 (&or (loop-d-type-spec . [&or nil loop-d-type-spec]) cl-type-spec)) |
476 | 471 |
477 ;; cl-specs.el ends here |