lisp/ox-html.el (org-html-template): Remove Emacs 22 compatibility
Emacs 22 support is long-dropped. We no longer need to be backwards compatible with it. Also, Org mode no longer works with Emacs 22, so there is no point keeping this code.
This commit is contained in:
parent
9a02750501
commit
4049742044
|
@ -2216,8 +2216,7 @@ holding export options."
|
|||
(format "%s\n"
|
||||
(format decl
|
||||
(or (and org-html-coding-system
|
||||
;; FIXME: Use Emacs 22 style here, see `coding-system-get'.
|
||||
(coding-system-get org-html-coding-system 'mime-charset))
|
||||
(coding-system-get org-html-coding-system :mime-charset))
|
||||
"iso-8859-1"))))))
|
||||
(org-html-doctype info)
|
||||
"\n"
|
||||
|
|
Loading…
Reference in New Issue