Modifying constructor for plain-string structures.
(change-plain-string x [:content <content>] [:double-quote-p <double-quote-p>])
This is an often useful alternative to make-plain-string.
We construct a new plain-string structure that is a copy of
This is an ordinary
Macro:
(defmacro change-plain-string (x &rest args) (std::change-aggregate 'plain-string x args '((:content . plain-string->content) (:double-quote-p . plain-string->double-quote-p)) 'change-plain-string 'nil))