From d34ef5ac942330a4657230e6256056f2f801f87f Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Wed, 25 Aug 1993 02:34:55 +0000 Subject: [PATCH] Change to use DEFPACKAGE, move spell-deleted-entry defn here. --- hemlock/spell-corr.lisp | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/hemlock/spell-corr.lisp b/hemlock/spell-corr.lisp index 4af82921f..c8def72d2 100644 --- a/hemlock/spell-corr.lisp +++ b/hemlock/spell-corr.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/spell-corr.lisp,v 1.1.1.7 1993/08/25 02:13:39 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/spell-corr.lisp,v 1.1.1.8 1993/08/25 02:34:55 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -160,19 +160,22 @@ ;;; "M" FLAG: ;;; ... => ...'S as in DOG => DOG'S +(defpackage "SPELL" + (:use "LISP" "EXTENSIONS" "SYSTEM") + (:export spell-try-word spell-root-word spell-collect-close-words + maybe-read-spell-dictionary correct-spelling max-entry-length + spell-read-dictionary spell-add-entry spell-root-flags + spell-remove-entry)) - -(in-package "SPELL" :use '("LISP" "EXTENSIONS" "SYSTEM")) - -(export '(spell-try-word spell-root-word spell-collect-close-words - maybe-read-spell-dictionary correct-spelling max-entry-length)) - +(in-package "SPELL") ;;;; Some Constants (eval-when (compile load eval) +(defconstant spell-deleted-entry #xFFFF) + ;;; The next number (using 6 bits) is 63, and that's pretty silly because ;;; "supercalafragalistic" is less than 31 characters long. ;;; -- GitLab