From 524665d4aadc8582f12f6ee02adeef67b557ee23 Mon Sep 17 00:00:00 2001
From: rtoy <rtoy>
Date: Wed, 13 Jul 2005 12:43:58 +0000
Subject: [PATCH] Add default implementation of ED, as required by ANSI CL. 
 This does nothing.  When hemlock is loaded, ED is replaced by the version
 from hemlock.

---
 code/misc.lisp | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/code/misc.lisp b/code/misc.lisp
index 9c27f7b16..d812fa316 100644
--- a/code/misc.lisp
+++ b/code/misc.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/misc.lisp,v 1.34 2005/05/23 18:42:22 rtoy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/misc.lisp,v 1.35 2005/07/13 12:43:58 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -233,3 +233,8 @@
 	   (setf *standard-output* (third old-streams))
 	   (setf *error-output* (fourth old-streams)))))
   (values))
+
+(defun ed (&optional x)
+  "Default implementation of ed.  This does nothing.  If hemlock is
+  loaded, ed can be used to edit a file"
+  (values))
-- 
GitLab