-# $Id: Makefile.in,v 1.3 2000/12/25 05:43:32 cph Exp $
+# $Id: Makefile.in,v 1.4 2001/10/05 15:43:38 cph Exp $
#
# Copyright (c) 2000 Massachusetts Institute of Technology
#
AUXDIR = @AUXDIR@
RODIR = $(AUXDIR)/options
RUNOPTS = chrsyn cpress format gdbm hashtb krypt mime-codec numint optiondb \
- ordvec process rbtree regexp rgxcmp syncproc wttree ystep
+ ordvec process rbtree regexp rexp rgxcmp syncproc wttree ystep
all:
echo "No ALL action"
#| -*- Scheme -*-
-$Id: ed-ffi.scm,v 1.24 2000/06/22 03:53:02 cph Exp $
+$Id: ed-ffi.scm,v 1.25 2001/10/05 15:43:40 cph Exp $
-Copyright (c) 1988-2000 Massachusetts Institute of Technology
+Copyright (c) 1988-2001 Massachusetts Institute of Technology
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+USA.
|#
;;;; Edwin buffer packaging info
syntax-table/system-internal)
("rep" (runtime rep)
syntax-table/system-internal)
+ ("rexp" (runtime rexp)
+ syntax-table/system-internal)
("rgxcmp" (runtime regular-expression-compiler)
syntax-table/system-internal)
("savres" (runtime save/restore)
#| -*-Scheme-*-
-$Id: optiondb.scm,v 1.9 2000/06/08 16:31:45 cph Exp $
+$Id: optiondb.scm,v 1.10 2001/10/05 15:43:43 cph Exp $
-Copyright (c) 1994-2000 Massachusetts Institute of Technology
+Copyright (c) 1994-2001 Massachusetts Institute of Technology
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+USA.
|#
(declare (usual-integrations))
"chrsyn")
(standard-option-loader '(RUNTIME REGULAR-EXPRESSION)
'(INITIALIZE-PACKAGE!)
- "regexp"))
\ No newline at end of file
+ "regexp")
+ (standard-option-loader '(RUNTIME REXP)
+ #F
+ "rexp"))
\ No newline at end of file
#| -*-Scheme-*-
-$Id: runtime.pkg,v 14.376 2001/09/25 05:30:24 cph Exp $
+$Id: runtime.pkg,v 14.377 2001/10/05 15:43:46 cph Exp $
Copyright (c) 1988-2001 Massachusetts Institute of Technology
re-quote-string
re-translation-table))
+(define-package (runtime rexp)
+ (file-case options
+ ((load) "rexp")
+ (else))
+ (parent ())
+ (export ()
+ rexp*
+ rexp+
+ rexp->regexp
+ rexp-alternatives
+ rexp-any-char
+ rexp-case-fold
+ rexp-compile
+ rexp-group
+ rexp-line-end
+ rexp-line-start
+ rexp-not-syntax-char
+ rexp-not-word-char
+ rexp-not-word-edge
+ rexp-optional
+ rexp-sequence
+ rexp-string-end
+ rexp-string-start
+ rexp-syntax-char
+ rexp-word-char
+ rexp-word-edge
+ rexp-word-end
+ rexp-word-start
+ rexp?))
+
(define-package (runtime char-syntax)
(file-case options
((load) "chrsyn")