Changeset trunk,28
- Timestamp:
- 08/28/2007 09:02:30 PM (19 years ago)
- revision id:
- svn-v3-trunk0:2948df59-2b31-0410-8e06-c40c0b09d5b6:trunk:30
- Location:
- trunk
- Files:
-
- 3 edited
-
dso-parse.asd (modified) (1 diff)
-
package.lisp (modified) (1 diff)
-
util.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dso-parse.asd
r21 r28 20 20 21 21 (asdf:defsystem #:dso-parse 22 :depends-on (#:cl-ppcre )22 :depends-on (#:cl-ppcre #:dso-util) 23 23 :components ((:file "package") 24 24 (:file "util") -
trunk/package.lisp
r25 r28 24 24 (see the IF-MATCHES-* macros, but especially IF-MATCHES), and for 25 25 defining parsers (DEFPARSER) and grammars (DEFGRAMMAR).") 26 (:use #:cl #:cl-ppcre )26 (:use #:cl #:cl-ppcre #:dso-util) 27 27 (:export #:if-matches-parser 28 28 #:if-matches-char -
trunk/util.lisp
r24 r28 22 22 23 23 24 25 (defmacro with-gensyms (syms &body body)26 `(let (,@(mapcar (lambda (sym) `(,sym (gensym ,(symbol-name sym)))) syms))27 ,@body))28 24 29 25 (defun substring (string &key (start 0) end length)
Note: See TracChangeset
for help on using the changeset viewer.
