diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2007-05-31 12:01:13 +0200 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2007-05-31 12:01:13 +0200 |
commit | 9d686186a2c3f08108a2f56b5325a06594e29610 (patch) | |
tree | a686c848ba59a9ed84fef4100e46d73c456657bf | |
parent | cadff3a71276bb5e73065ae799dc4a1c84c32d40 (diff) |
Minor cleanups.
darcs-hash:c869ad33b1bdfdea92bade8299d17e202c36dd11
-rwxr-xr-x | journal.lisp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/journal.lisp b/journal.lisp index 1243508..2d6f8e8 100755 --- a/journal.lisp +++ b/journal.lisp @@ -198,11 +198,7 @@ for matches = (ppcre:all-matches "<a [^>]*?> " markup) while (not (null matches)) do (progn - (setf markup #+nil - (delete-if (constantly t) - markup - :start (1- (second matches)) - :end (second matches)) + (setf markup (replace markup markup :start1 (1+ (first matches)) :end1 (second matches) :start2 (first matches) |