Function: article-treat-smartquotes
article-treat-smartquotes is an interactive and byte-compiled function
defined in gnus-art.el.gz.
Signature
(article-treat-smartquotes)
Documentation
Translate "Microsoft smartquotes" and other symbols into proper text.
Note that this function guesses whether a character is a smartquote or not, so it should only be used interactively.
Smartquotes are Microsoft's unilateral extension to the iso-8859-1 character map in an attempt to provide more quoting characters. If you see something like \222 or \264 where you're expecting some kind of apostrophe or quotation mark, then try this wash.
Key Bindings
Aliases
article-treat-dumbquotes (obsolete since 27.1)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun article-treat-smartquotes ()
"Translate \"Microsoft smartquotes\" and other symbols into proper text.
Note that this function guesses whether a character is a smartquote or
not, so it should only be used interactively.
Smartquotes are Microsoft's unilateral extension to the
iso-8859-1 character map in an attempt to provide more quoting
characters. If you see something like \\222 or \\264 where
you're expecting some kind of apostrophe or quotation mark, then
try this wash."
(interactive nil gnus-article-mode)
(article-translate-strings gnus-article-smartquotes-map))