'utf-8 nil (current-buffer))
(should (null (sanity-check-change-functions-errors))))))
+(ert-deftest editfns-tests-styled-print ()
+ "Test bug#75754."
+ :expected-result :failed
+ (let* ((print-unreadable-function
+ (lambda (&rest _args)
+ (garbage-collect)
+ (make-string 100 ?Ā t)))
+ (str "\"[1] ĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀĀ\""))
+ (should (string= (format "%S" (format "%S %S" [1] (symbol-function '+)))
+ str))))
+
;;; editfns-tests.el ends here