Skip to content
Snippets Groups Projects
Commit 5c12186f authored by emarsden's avatar emarsden
Browse files

Add a pane-title for integers to the CLM inspector (fixes an error when

inspecting integers using the Motif interface). Thanks to Raymond Toy for
testing.
parent 03157ca3
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/interface/inspect.lisp,v 1.10 1994/10/31 04:53:18 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/interface/inspect.lisp,v 1.11 2003/12/03 07:56:09 emarsden Rel $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -174,6 +174,9 @@ ...@@ -174,6 +174,9 @@
(format nil "List of length ~a" (length l)) (format nil "List of length ~a" (length l))
(format nil "Dotted Pair"))) (format nil "Dotted Pair")))
(defmethod inspector-pane-title ((i integer))
(format nil "Integer ~D" i))
;;;; Methods for displaying object inspection panes ;;;; Methods for displaying object inspection panes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment