=?UTF-8?Q?Fr=C3=A9d=C3=A9ric=20Delanoy=20?=: winedev: Use proper entity escaping for '&', '<' and '>'.

Alexandre Julliard julliard at winehq.org
Fri Aug 2 15:01:23 CDT 2013


Module: docs
Branch: master
Commit: 6086179c916e8f05112c1eb80ac095eb7c3ac79e
URL:    http://source.winehq.org/git/docs.git/?a=commit;h=6086179c916e8f05112c1eb80ac095eb7c3ac79e

Author: Frédéric Delanoy <frederic.delanoy at gmail.com>
Date:   Wed Jul 24 12:48:46 2013 +0200

winedev: Use proper entity escaping for '&', '<' and '>'.

---

 en/winedev-windowing.sgml |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/en/winedev-windowing.sgml b/en/winedev-windowing.sgml
index fe24ebc..4175f0d 100644
--- a/en/winedev-windowing.sgml
+++ b/en/winedev-windowing.sgml
@@ -583,7 +583,7 @@ static const int main_key_scan[MAIN_LEN] =
 	  For example, my Norwegian keyboard looks like this
 	</para>
 	<screen>
-§  !  "  #  ¤  %  &  /  (  )  =  ?  `  Back-
+§  !  "  #  ¤  %  &  /  (  )  =  ?  `  Back-
 |  1  2@ 3£ 4$ 5  6  7{ 8[ 9] 0} +  \´ space
 
 Tab Q  W  E  R  T  Y  U  I  O  P  Å  ^
@@ -592,13 +592,13 @@ Tab Q  W  E  R  T  Y  U  I  O  P  
 Caps A  S  D  F  G  H  J  K  L  Ø  Æ  *
 Lock                                  '
 
-Sh- > Z  X  C  V  B  N  M  ;  :  _  Shift
+Sh- > Z  X  C  V  B  N  M  ;  :  _  Shift
 ift <                      ,  .  -
 
 Ctrl  Alt       Spacebar       AltGr  Ctrl
 	</screen>
 	<para>
-	  Note the 102nd key, which is the <keycap><></keycap> key, to
+	  Note the 102nd key, which is the <keycap><></keycap> key, to
 	  the left of <keycap>Z</keycap>. The character to the right of
 	  the main character is the character generated by
 	  <keycap>AltGr</keycap>.
@@ -609,11 +609,11 @@ Ctrl  Alt       Spacebar       AltGr  Ctrl
 	<programlisting>
 static const char main_key_NO[MAIN_LEN][4] =
 {
-"|§","1!","2\"@","3#£","4¤$","5%","6&","7/{","8([","9)]","0=}","+?","\\´",
+"|§","1!","2\"@","3#£","4¤$","5%","6&","7/{","8([","9)]","0=}","+?","\\´",
 "qQ","wW","eE","rR","tT","yY","uU","iI","oO","pP","åÅ","¨^~",
 "aA","sS","dD","fF","gG","hH","jJ","kK","lL","øØ","æÆ","'*",
 "zZ","xX","cC","vV","bB","nN","mM",",;",".:","-_",
-"<>"
+"<>"
 };
 	</programlisting>
 	<para>
@@ -641,7 +641,7 @@ const char (*key)[MAIN_LEN][4];
 	  it works. If it fails to detect your table, try running
 	</para>
 	<screen>
-WINEDEBUG=+key,+keyboard wine > key.log 2>&1
+WINEDEBUG=+key,+keyboard wine > key.log 2>&1
 	</screen>
 	<para>
 	  and look in the resulting <filename>key.log</filename> file to




More information about the wine-cvs mailing list