From: Kevin M. Rosenberg Date: Sun, 4 May 2003 01:18:58 +0000 (+0000) Subject: r4788: Auto commit for Debian build X-Git-Tag: v2006ac.2~210 X-Git-Url: http://git.kpe.io/?p=umlisp.git;a=commitdiff_plain;h=3fb891d1dd26a63ac161e8ba0108acaf78717509 r4788: Auto commit for Debian build --- diff --git a/sql-classes.lisp b/sql-classes.lisp index f76d6ec..7c685a3 100644 --- a/sql-classes.lisp +++ b/sql-classes.lisp @@ -7,7 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: sql-classes.lisp,v 1.61 2003/05/04 01:18:10 kevin Exp $ +;;;; $Id: sql-classes.lisp,v 1.62 2003/05/04 01:18:58 kevin Exp $ ;;;; ;;;; This file, part of UMLisp, is ;;;; Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D. @@ -458,13 +458,13 @@ is OBJNAME from TABLE where WHERE-NAME field = WHERE-VALUE with FIELDS" (defun find-ucon-word (word &key (srl *current-srl*) (like nil)) "Return list of ucons that match word. Optionally, use SQL's LIKE syntax" (with-umlisp-query-eval ('mrxw_eng '(cui) srl 'wd word :like like :distinct t - :lrl klrl :order '(cui asc)) + :lrl 'klrl :order '(cui asc)) (find-ucon-cui cui :srl srl))) (defun find-ucon-normalized-word (word &key (srl *current-srl*) (like nil)) "Return list of ucons that match word, optionally use SQL's LIKE syntax" (with-umlisp-query-eval ('mrxnw_eng '(cui) srl 'nwd word :like like :distinct t - :lrl klrl :order '(cui asc)) + :lrl 'klrl :order '(cui asc)) (find-ucon-cui cui :srl srl))) (defun find-ustr-word (word &key (srl *current-srl*))