aboutsummaryrefslogtreecommitdiff
path: root/src/propspec.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-03-01 16:34:17 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-03-01 16:34:17 -0700
commitf9164fcfc840c954d8f645120580660a69477dc6 (patch)
tree3ebef49f72bd02ea5e1b35e87aafadb56be649f1 /src/propspec.lisp
parent90bace9b553d717f9e588714557f45e128b89acc (diff)
downloadconsfigurator-f9164fcfc840c954d8f645120580660a69477dc6.tar.gz
fix printing embedded hosts and propspecs
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/propspec.lisp')
-rw-r--r--src/propspec.lisp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/propspec.lisp b/src/propspec.lisp
index 4ebe92c..60ed55b 100644
--- a/src/propspec.lisp
+++ b/src/propspec.lisp
@@ -97,10 +97,10 @@ property's apply slot."))
;; does not use MAKE-PROPSPEC because we do not want the :PREPROCESS
;; subroutines to be run again when the object is read back in
(defmethod print-object ((propspec propspec) stream)
- (format stream "~S" `(make-instance
- 'propspec
- :systems ',(slot-value propspec 'systems)
- :props ',(slot-value propspec 'applications)))
+ (format stream "#.~S" `(make-instance
+ 'propspec
+ :systems ',(slot-value propspec 'systems)
+ :props ',(slot-value propspec 'applications)))
propspec)