From 933317b82c3441aa75c2c5375e25d1929bc80045 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Mon, 4 Nov 2002 18:02:40 +0000 Subject: [PATCH] r3291: *** empty log message *** --- genutils.lisp | 15 +++++++-------- strings.lisp | 7 ++++--- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/genutils.lisp b/genutils.lisp index 09b14fa..e13e46c 100644 --- a/genutils.lisp +++ b/genutils.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: genutils.lisp,v 1.5 2002/10/12 06:10:17 kevin Exp $ +;;;; $Id: genutils.lisp,v 1.6 2002/11/04 18:02:13 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -252,7 +252,7 @@ (defun mapcar-append-string-nontailrec (func v) -"Concatenate results of mapcar lambda calls" + "Concatenate results of mapcar lambda calls" (aif (car v) (concatenate 'string (funcall func it) (mapcar-append-string-nontailrec func (cdr v))) @@ -260,7 +260,7 @@ (defun mapcar-append-string (func v &optional (accum "")) -"Concatenate results of mapcar lambda calls" + "Concatenate results of mapcar lambda calls" (aif (car v) (mapcar-append-string func @@ -268,9 +268,8 @@ (concatenate 'string accum (funcall func it))) accum)) - (defun mapcar2-append-string-nontailrec (func la lb) -"Concatenate results of mapcar lambda call's over two lists" + "Concatenate results of mapcar lambda call's over two lists" (let ((a (car la)) (b (car lb))) (if (and a b) @@ -279,7 +278,7 @@ ""))) (defun mapcar2-append-string (func la lb &optional (accum "")) -"Concatenate results of mapcar lambda call's over two lists" + "Concatenate results of mapcar lambda call's over two lists" (let ((a (car la)) (b (car lb))) (if (and a b) @@ -299,7 +298,7 @@ (format stream fmt))) (defun print-list (l &optional (output *standard-output*)) -"Print a list to a stream" + "Print a list to a stream" (if (consp l) (progn (mapcar (lambda (x) (princ x output) (princ #\newline output)) l) @@ -307,7 +306,7 @@ nil)) (defun print-rows (rows &optional (ostrm *standard-output*)) -"Print a list of list rows to a stream" + "Print a list of list rows to a stream" (dolist (r rows) (mapcar (lambda (a) (princ a ostrm) (princ #\space ostrm)) r) (terpri ostrm))) diff --git a/strings.lisp b/strings.lisp index ba34182..dce2908 100644 --- a/strings.lisp +++ b/strings.lisp @@ -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.2 2002/11/04 18:02:13 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -19,6 +19,7 @@ (in-package :kmrcl) (declaim (optimize (speed 3) (safety 1) (compilation-speed 0) (debug 3))) + ;;; Strings (defmacro string-append (outputstr &rest args) @@ -53,7 +54,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 +94,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 -- 2.34.1