Function: eww-set-character-encoding

eww-set-character-encoding is an interactive and byte-compiled function defined in eww.el.gz.

Signature

(eww-set-character-encoding CHARSET)

Documentation

Set character encoding to CHARSET.

If CHARSET is nil then use UTF-8.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
(defun eww-set-character-encoding (charset)
  "Set character encoding to CHARSET.
If CHARSET is nil then use UTF-8."
  (interactive "zUse character set (default `utf-8'): " eww-mode)
  (if (null charset)
      (eww-reload nil 'utf-8)
    (eww-reload nil charset)))