~ubuntu-branches/ubuntu/karmic/maxima/karmic

« back to all changes in this revision

Viewing changes to src/nregex.lisp

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2004-11-13 18:39:14 UTC
  • mto: (2.1.2 hoary) (3.2.1 sid) (1.1.5 upstream)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20041113183914-ttig0evwuatnqosl
Tags: upstream-5.9.1
ImportĀ upstreamĀ versionĀ 5.9.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
;;;
24
24
;;; First we create a copy of macros to help debug the beast
25
25
 
26
 
(eval-when (:compile-toplevel :load-toplevel :execute)
 
26
(eval-when #-gcl(:compile-toplevel :load-toplevel :execute) 
 
27
           #+gcl(load compile eval)
27
28
(defpackage "NREGEX"
28
29
  (:use "COMMON-LISP")
29
30
  (:export
428
429
              `(lambda (string &key (start 0) (end (length string)))
429
430
                 (declare (string string)
430
431
                          (fixnum start end)
 
432
                          (ignorable start)
431
433
                          (optimize (speed 0) (compilation-speed 3)))
432
434
                 (setf *regex-groupings* ,group)
433
435
                 (block final-return
440
442
            `(lambda (string &key (start 0) (end (length string)))
441
443
               (declare (string string)
442
444
                        (fixnum start end)
 
445
                        (ignorable start)
443
446
                        (optimize (speed 0) (compilation-speed 3)))
444
447
               (setf *regex-groupings* ,group)
445
448
               (block final-return