r3627: *** empty log message ***
[kmrcl.git] / strings.lisp
index ba34182b25c7ca7315f0da4343b42f8b2ab2fec3..bf915077496962eb8c3eb680cdc8087f04a06664 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: strings.lisp,v 1.1 2002/10/12 06:10:17 kevin Exp $
+;;;; $Id: strings.lisp,v 1.3 2002/12/14 02:36:42 kevin Exp $
 ;;;;
 ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 
 (in-package :kmrcl)
 (declaim (optimize (speed 3) (safety 1) (compilation-speed 0) (debug 3)))
+
 ;;; Strings
 
 (defmacro string-append (outputstr &rest args)
   `(setq ,outputstr (concatenate 'string ,outputstr ,@args)))
 
-(defmacro string-field-append (outputstr &rest args)
-  `(setq ,outputstr (concatenate 'string ,outputstr ,@args)))
-
 (defun list-to-string (lst)
   "Converts a list to a string, doesn't include any delimiters between elements"
   (format nil "~{~A~}" lst))
@@ -53,7 +51,7 @@
 
 #-excl
 (defun delimited-string-to-list (sequence &optional (separator #\space))
-"Split a string by a delimitor"
+  "Split a string by a delimitor"
   (loop
       with start = 0
       for end = (position separator sequence :start start)
@@ -93,7 +91,7 @@
   (substitute-string-for-char s #\\ "\\\\"))
 
 (defun substitute-string-for-char (procstr match-char subst-str) 
-"Substitutes a string for a single matching character of a string"
+  "Substitutes a string for a single matching character of a string"
   (let ((pos (position match-char procstr)))
     (if pos
        (concatenate 'string