[docs] winedev: Use proper entity escaping for '&', '<' and '>'. (try 2)

Frédéric Delanoy frederic.delanoy at gmail.com
Wed Jul 24 05:48:46 CDT 2013


---
 en/winedev-windowing.sgml | 12 ++++++------
 1 file 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
-- 
1.8.3.4




More information about the wine-patches mailing list