Function: erc-decode-coding-string
erc-decode-coding-string is a byte-compiled function defined in
erc-compat.el.gz.
This function is obsolete since 28.1; use decode-coding-string
instead.
Signature
(erc-decode-coding-string S CODING-SYSTEM)
Documentation
Decode S using CODING-SYSTEM.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-compat.el.gz
(defun erc-decode-coding-string (s coding-system)
"Decode S using CODING-SYSTEM."
(declare (obsolete decode-coding-string "28.1"))
(decode-coding-string s coding-system t))