r3627: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 14 Dec 2002 02:36:42 +0000 (02:36 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 14 Dec 2002 02:36:42 +0000 (02:36 +0000)
strings.lisp

index dce2908125da7f7f0949d16d6427baa8b3fe2c3d..bf915077496962eb8c3eb680cdc8087f04a06664 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: strings.lisp,v 1.2 2002/11/04 18:02:13 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
 ;;;;
@@ -25,9 +25,6 @@
 (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))