~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to plug-ins/script-fu/re/README.1st

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
             TinyScheme RE (Regular Expressions) extension
 
2
             ---------------------------------------------
 
3
Version 1.2, August 2002
 
4
 
 
5
The bulk of this directory is the regular expression library written
 
6
by Henry Spencer (see file README and COPYRIGHT).
 
7
 
 
8
Two files were added to produce the TinyScheme regular expression
 
9
library, re.so: re.c and re.makefile. The included re.makefile was contributed
 
10
initially by Stephen Gildea and should be adaptable to all Unix systems.
 
11
 
 
12
The makefile produces a DLL named re.so. For now, it contains just
 
13
a single foreign function (re-match <pattern> <string>). It returns
 
14
true (string matches pattern) or false. If it is called with an
 
15
extra parameter, which should be a vector, overwrites as many elements
 
16
of the vector as needed with the strings that matched the corresponding
 
17
parenthesized subexpressions inside <pattern>.
 
18
 
 
19
It is not fully tested, so use with caution.
 
20
 
 
21
Load the extension from inside TinyScheme using
 
22
(load-extension "re/re")
 
23
assuming that re.so is in the directory "re".
 
24
 
 
25
Load "re.scm" if you wish to use v.1.1 behavior.
 
26
 
 
27
dsouflis@acm.org