Changeset trunk,28 for trunk


Ignore:
Timestamp:
08/28/2007 09:02:30 PM (19 years ago)
Author:
dsowen
revision id:
svn-v3-trunk0:2948df59-2b31-0410-8e06-c40c0b09d5b6:trunk:30
Message:

Moved WITH-GENSYMS to dso-util.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/dso-parse.asd

    r21 r28  
    2020
    2121(asdf:defsystem #:dso-parse
    22   :depends-on (#:cl-ppcre)
     22  :depends-on (#:cl-ppcre #:dso-util)
    2323  :components ((:file "package")
    2424               (:file "util")
  • trunk/package.lisp

    r25 r28  
    2424(see the IF-MATCHES-* macros, but especially IF-MATCHES), and for
    2525defining parsers (DEFPARSER) and grammars (DEFGRAMMAR).")
    26   (:use #:cl #:cl-ppcre)
     26  (:use #:cl #:cl-ppcre #:dso-util)
    2727  (:export #:if-matches-parser
    2828           #:if-matches-char
  • trunk/util.lisp

    r24 r28  
    2222
    2323
    24 
    25 (defmacro with-gensyms (syms &body body)
    26   `(let (,@(mapcar (lambda (sym) `(,sym (gensym ,(symbol-name sym)))) syms))
    27     ,@body))
    2824
    2925(defun substring (string &key (start 0) end length)
Note: See TracChangeset for help on using the changeset viewer.