diff options
author | Ulrich Müller <ulm@gentoo.org> | 2022-10-09 11:56:52 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2022-10-09 11:56:52 +0200 |
commit | b877f644c77f43e07adc134c72d79972e4e4fa23 (patch) | |
tree | 8e7a50bb84cf76ca0cae225b3405c86a0e7591d2 /appendices/editor-configuration | |
parent | ebuild-writing/variables: Fix example for ROOT (diff) | |
download | devmanual-b877f644c77f43e07adc134c72d79972e4e4fa23.tar.gz devmanual-b877f644c77f43e07adc134c72d79972e4e4fa23.tar.bz2 devmanual-b877f644c77f43e07adc134c72d79972e4e4fa23.zip |
Explicitly specify UTF-8 encoding in XML declarations
As specified by the DevBook XML guide.
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'appendices/editor-configuration')
-rw-r--r-- | appendices/editor-configuration/emacs/text.xml | 2 | ||||
-rw-r--r-- | appendices/editor-configuration/text.xml | 2 | ||||
-rw-r--r-- | appendices/editor-configuration/vim/text.xml | 2 | ||||
-rw-r--r-- | appendices/editor-configuration/xemacs/text.xml | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/appendices/editor-configuration/emacs/text.xml b/appendices/editor-configuration/emacs/text.xml index c90dba6..9300a69 100644 --- a/appendices/editor-configuration/emacs/text.xml +++ b/appendices/editor-configuration/emacs/text.xml @@ -1,4 +1,4 @@ -<?xml version="1.0"?> +<?xml version="1.0" encoding="UTF-8"?> <guide self="appendices/editor-configuration/emacs/"> <chapter> <title>Configuring GNU Emacs</title> diff --git a/appendices/editor-configuration/text.xml b/appendices/editor-configuration/text.xml index 8c3356f..fa1547d 100644 --- a/appendices/editor-configuration/text.xml +++ b/appendices/editor-configuration/text.xml @@ -1,4 +1,4 @@ -<?xml version="1.0"?> +<?xml version="1.0" encoding="UTF-8"?> <guide self="appendices/editor-configuration/"> <chapter> <title>Editor Configuration</title> diff --git a/appendices/editor-configuration/vim/text.xml b/appendices/editor-configuration/vim/text.xml index e0d34e8..ffcf686 100644 --- a/appendices/editor-configuration/vim/text.xml +++ b/appendices/editor-configuration/vim/text.xml @@ -1,4 +1,4 @@ -<?xml version="1.0"?> +<?xml version="1.0" encoding="UTF-8"?> <guide self="appendices/editor-configuration/vim/"> <chapter> <title>Configuring <c>vim</c> and <c>gvim</c></title> diff --git a/appendices/editor-configuration/xemacs/text.xml b/appendices/editor-configuration/xemacs/text.xml index c1a1ee7..a4105cc 100644 --- a/appendices/editor-configuration/xemacs/text.xml +++ b/appendices/editor-configuration/xemacs/text.xml @@ -1,4 +1,4 @@ -<?xml version="1.0"?> +<?xml version="1.0" encoding="UTF-8"?> <guide self="appendices/editor-configuration/xemacs/"> <chapter> <title>Configuring XEmacs for UTF-8</title> |