--- a/QScintilla/SearchReplaceWidget.py Sun Aug 21 19:11:03 2011 +0200 +++ b/QScintilla/SearchReplaceWidget.py Tue Aug 23 18:44:20 2011 +0200 @@ -74,7 +74,7 @@ <tr><td><code>.</code></td><td>Matches any character</td></tr> <tr><td><code>\(</code></td><td>This marks the start of a region for tagging a match.</td></tr> <tr><td><code>\)</code></td><td>This marks the end of a tagged region.</td></tr> -<tr><td><code>\n</code></td> +<tr><td><code>\\n</code></td> <td>Where <code>n</code> is 1 through 9 refers to the first through ninth tagged region when replacing. For example, if the search string was <code>Fred\([1-9]\)XXX</code> and the replace string was <code>Sam\1YYY</code>, when applied to <code>Fred2XXX</code> this @@ -83,9 +83,9 @@ <td>This matches the start of a word using Scintilla's definitions of words.</td></tr> <tr><td><code>\></code></td> <td>This matches the end of a word using Scintilla's definition of words.</td></tr> -<tr><td><code>\x</code></td> +<tr><td><code>\\x</code></td> <td>This allows you to use a character x that would otherwise have a special meaning. For -example, \[ would be interpreted as [ and not as the start of a character set.</td></tr> +example, \\[ would be interpreted as [ and not as the start of a character set.</td></tr> <tr><td><code>[...]</code></td> <td>This indicates a set of characters, for example, [abc] means any of the characters a, b or c. You can also use ranges, for example [a-z] for any lower case character.</td></tr>