[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/inspector e8d098a3c3 1/3: Exclude properties when print
From: |
ELPA Syncer |
Subject: |
[elpa] externals/inspector e8d098a3c3 1/3: Exclude properties when printing strings |
Date: |
Fri, 10 Mar 2023 21:58:28 -0500 (EST) |
branch: externals/inspector
commit e8d098a3c3c28390ca33a5bc3979f0d982df6d82
Author: Mariano Montone <marianomontone@gmail.com>
Commit: Mariano Montone <marianomontone@gmail.com>
Exclude properties when printing strings
---
inspector.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/inspector.el b/inspector.el
index 689c10f725..08722baa19 100644
--- a/inspector.el
+++ b/inspector.el
@@ -578,7 +578,7 @@ is expected to be used.")
(cl-defmethod inspector-inspect-object ((string string))
"Render inspector buffer for STRING."
(inspector--insert-title "string")
- (prin1 string (current-buffer))
+ (prin1 (substring-no-properties string) (current-buffer))
(let ((text-properties (object-intervals string)))
(when text-properties
(newline 2)