+2000-05-24 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * pces-raw.el (encode-coding-string, decode-coding-string): Return
+ a copy of string.
+
2000-04-25 Katsumi Yamaoka <yamaoka@jpl.org>
* EMU-ELS (emu-modules): Don't include `pccl-20' for XEmacs 20 and
(defun decode-coding-string (string coding-system)
"Decode the STRING which is encoded in CODING-SYSTEM."
- string)
+ (copy-sequence string))
(defun encode-coding-string (string coding-system)
"Encode the STRING as CODING-SYSTEM."
- string)
+ (copy-sequence string))
(defun decode-coding-region (start end coding-system)
"Decode the text between START and END which is encoded in CODING-SYSTEM."