diff --git a/hemlock/htext2.lisp b/hemlock/htext2.lisp
index b91781ef94bdaa973e83c5882b09b5b262af2435..60da61f086bc258dfe411fb811f0dd412fc1599e 100644
--- a/hemlock/htext2.lisp
+++ b/hemlock/htext2.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/hemlock/htext2.lisp,v 1.3 1994/10/31 04:50:12 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/htext2.lisp,v 1.4 2004/03/28 15:48:11 emarsden Rel $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -239,13 +239,13 @@
 (defun buffer-start (mark &optional (buffer (line-buffer (mark-line mark))))
   "Change Mark to point to the beginning of Buffer, which defaults to
   the buffer Mark is currently in."
-  (unless buffer (error "Mark ~S does not point into a buffer."))
+  (unless buffer (error "Mark ~S does not point into a buffer." mark))
   (move-mark mark (buffer-start-mark buffer)))
 
 (defun buffer-end (mark &optional (buffer (line-buffer (mark-line mark))))
   "Change Mark to point to the end of Buffer, which defaults to
   the buffer Mark is currently in."
-  (unless buffer (error "Mark ~S does not point into a buffer."))
+  (unless buffer (error "Mark ~S does not point into a buffer." mark))
   (move-mark mark (buffer-end-mark buffer)))
 
 (defun move-mark (mark new-position)
diff --git a/hemlock/tty-display.lisp b/hemlock/tty-display.lisp
index f33ca9f01b7231faf59d79ce946e7949051021a8..158b3250d46df1640d59e521db313db7c8568537 100644
--- a/hemlock/tty-display.lisp
+++ b/hemlock/tty-display.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/hemlock/tty-display.lisp,v 1.5 2001/03/13 15:50:00 pw Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/tty-display.lisp,v 1.6 2004/03/28 15:48:11 emarsden Rel $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -177,7 +177,7 @@
 	       (cons (car stuff) (cadr stuff))))
 	(t
 	 (error "Bogus font spec: ~S~%Must be either a list of keywords or ~
-		 a list of the start string and end string."))))
+		 a list of the start string and end string." stuff))))
 
 
 (defun compute-font-usages (dis-line)