From: Kevin M. Rosenberg Date: Wed, 28 May 2003 21:26:40 +0000 (+0000) Subject: r5048: *** empty log message *** X-Git-Tag: v2006ac.2~147 X-Git-Url: http://git.kpe.io/?p=umlisp.git;a=commitdiff_plain;h=7d5546141bd1916109792db767431dd8e3e1fe64 r5048: *** empty log message *** --- diff --git a/class-support.lisp b/class-support.lisp index f7975e7..50e514f 100644 --- a/class-support.lisp +++ b/class-support.lisp @@ -7,7 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: class-support.lisp,v 1.9 2003/05/26 14:53:33 kevin Exp $ +;;;; $Id: class-support.lisp,v 1.10 2003/05/28 21:25:47 kevin Exp $ ;;;; ;;;; This file, part of UMLisp, is ;;;; Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D. @@ -128,13 +128,13 @@ "Return the string for a ulo object" (find-string-sui (sui lo))) -(defmethod uterm-pfstr (uterm) +(defun uterm-pfstr (uterm) "Return the preferred string for a uterm" (dolist (ustr (s#str uterm)) (when (string= "PF" (stt ustr)) (return-from uterm-pfstr (str ustr))))) -(defmethod remove-non-english-terms (uterms) +(defun remove-non-english-terms (uterms) (remove-if-not #'english-term-p uterms))