Revision: 1846 http://geany.svn.sourceforge.net/geany/?rev=1846&view=rev Author: ntrel Date: 2007-08-31 05:01:22 -0700 (Fri, 31 Aug 2007)
Log Message: ----------- Undo last commit, because it makes selecting text with the mouse include all trailing lines with no wordchars on them.
Modified Paths: -------------- trunk/ChangeLog trunk/data/filetypes.common trunk/doc/geany.html trunk/doc/geany.txt trunk/src/highlighting.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2007-08-31 11:42:58 UTC (rev 1845) +++ trunk/ChangeLog 2007-08-31 12:01:22 UTC (rev 1846) @@ -3,6 +3,9 @@ * src/highlighting.c, doc/geany.txt, doc/geany.html, data/filetypes.common: Include \n\r newline chars in Scintilla whitespace chars. + * data/filetypes.common: + Undo last commit, because it makes selecting text with the mouse + include all trailing lines with no wordchars on them.
2007-08-30 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/data/filetypes.common =================================================================== --- trunk/data/filetypes.common 2007-08-31 11:42:58 UTC (rev 1845) +++ trunk/data/filetypes.common 2007-08-31 12:01:22 UTC (rev 1846) @@ -52,4 +52,4 @@ [settings] # which characters should be skipped when moving (or included when deleting) to word boundaries # should always include space and tab (\s\t) -whitespace_chars=\s\t\n\r!"#$%&'()*+,-./:;<=>?@[\]^`{|}~ +whitespace_chars=\s\t!"#$%&'()*+,-./:;<=>?@[\]^`{|}~
Modified: trunk/doc/geany.html =================================================================== --- trunk/doc/geany.html 2007-08-31 11:42:58 UTC (rev 1845) +++ trunk/doc/geany.html 2007-08-31 12:01:22 UTC (rev 1846) @@ -6,7 +6,7 @@ <meta name="generator" content="Docutils 0.4: http://docutils.sourceforge.net/" /> <title>Geany</title> <meta name="authors" content="Enrico Tröger Nick Treleaven Frank Lanitz" /> -<meta name="date" content="2007-08-30" /> +<meta name="date" content="2007-08-29" /> <style type="text/css">
/* @@ -133,7 +133,7 @@ <br />Nick Treleaven <br />Frank Lanitz</td></tr> <tr><th class="docinfo-name">Date:</th> -<td>2007-08-30</td></tr> +<td>2007-08-29</td></tr> <tr><th class="docinfo-name">Version:</th> <td>0.12</td></tr> </tbody> @@ -2077,7 +2077,7 @@ when moving, selecting and deleting across word boundaries (see <a class="reference" href="#scintilla-keyboard-commands">Scintilla keyboard commands</a>).</p> <p>This should include space (\s) and tab (\t).</p> -<p class="last"><em>Example:</em> <tt class="docutils literal"><span class="pre">whitespace_chars=\s\t\n\r!"#$%&'()*+,-./:;<=>?@[\]^`{|}~</span></tt></p> +<p class="last"><em>Example:</em> <tt class="docutils literal"><span class="pre">whitespace_chars=\s\t!"#$%&'()*+,-./:;<=>?@[\]^`{|}~</span></tt></p> </dd> </dl> </div> @@ -2962,7 +2962,7 @@ <div class="footer"> <hr class="footer" /> <a class="reference" href="geany.txt">View document source</a>. -Generated on: 2007-08-31 11:35 UTC. +Generated on: 2007-08-30 10:25 UTC. Generated by <a class="reference" href="http://docutils.sourceforge.net/">Docutils</a> from <a class="reference" href="http://docutils.sourceforge.net/rst.html">reStructuredText</a> source.
</div>
Modified: trunk/doc/geany.txt =================================================================== --- trunk/doc/geany.txt 2007-08-31 11:42:58 UTC (rev 1845) +++ trunk/doc/geany.txt 2007-08-31 12:01:22 UTC (rev 1846) @@ -1928,7 +1928,7 @@
This should include space (\s) and tab (\t).
- *Example:* ``whitespace_chars=\s\t\n\r!"#$%&'()*+,-./:;<=>?@[\]^`{|}~`` + *Example:* ``whitespace_chars=\s\t!"#$%&'()*+,-./:;<=>?@[\]^`{|}~``
Modified: trunk/src/highlighting.c =================================================================== --- trunk/src/highlighting.c 2007-08-31 11:42:58 UTC (rev 1845) +++ trunk/src/highlighting.c 2007-08-31 12:01:22 UTC (rev 1846) @@ -37,7 +37,7 @@
/* Whitespace has to be set after setting wordchars. */ -#define GEANY_WHITESPACE_CHARS " \t\n\r" "!"#$%&'()*+,-./:;<=>?@[\]^`{|}~" +#define GEANY_WHITESPACE_CHARS " \t" "!"#$%&'()*+,-./:;<=>?@[\]^`{|}~"
static gchar *whitespace_chars;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.