Function: find-coding-systems-string

find-coding-systems-string is a byte-compiled function defined in mule-cmds.el.gz.

Signature

(find-coding-systems-string STRING)

Documentation

Return a list of proper coding systems to encode STRING.

All coding systems in the list can safely encode any multibyte characters in STRING.

If STRING contains no multibyte characters, return a list of a single element undecided.

View in manual

Probably introduced at or before Emacs version 20.3.

Source Code

;; Defined in /usr/src/emacs/lisp/international/mule-cmds.el.gz
(defun find-coding-systems-string (string)
  "Return a list of proper coding systems to encode STRING.
All coding systems in the list can safely encode any multibyte characters
in STRING.

If STRING contains no multibyte characters, return a list of a single
element `undecided'."
  (find-coding-systems-region string nil))