comparison lisp/edebug/cl-specs.el @ 4:b82b59fe008d r19-15b3

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