SF.net SVN: geany:[2910] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Wed Aug 27 16:41:03 UTC 2008


Revision: 2910
          http://geany.svn.sourceforge.net/geany/?rev=2910&view=rev
Author:   ntrel
Date:     2008-08-27 16:41:02 +0000 (Wed, 27 Aug 2008)

Log Message:
-----------
Change hidden pref scroll_stop_at_last_line to TRUE (#2030914).

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/doc/geany.html
    trunk/doc/geany.txt
    trunk/src/keyfile.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2008-08-27 16:16:50 UTC (rev 2909)
+++ trunk/ChangeLog	2008-08-27 16:41:02 UTC (rev 2910)
@@ -7,6 +7,8 @@
    Wendling, thanks; closes #2060961).
  * src/filetypes.c, src/filetypes.h:
    Add GeanyFiletypeGroupID enum and GeanyFiletype::group field.
+ * src/keyfile.c, doc/geany.txt, doc/geany.html:
+   Change hidden pref scroll_stop_at_last_line to TRUE (#2030914).
 
 
 2008-08-26  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>

Modified: trunk/doc/geany.html
===================================================================
--- trunk/doc/geany.html	2008-08-27 16:16:50 UTC (rev 2909)
+++ trunk/doc/geany.html	2008-08-27 16:41:02 UTC (rev 2910)
@@ -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="2008-08-13" />
+<meta name="date" content="2008-08-14" />
 <style type="text/css">
 
 /*
@@ -139,7 +139,7 @@
 <br />Nick Treleaven
 <br />Frank Lanitz</td></tr>
 <tr><th class="docinfo-name">Date:</th>
-<td>2008-08-13</td></tr>
+<td>2008-08-14</td></tr>
 <tr><th class="docinfo-name">Version:</th>
 <td>0.15</td></tr>
 </tbody>
@@ -3631,7 +3631,7 @@
 </tr>
 <tr><td>scroll_stop_at_last_line</td>
 <td>Disable scrolling past end of document</td>
-<td>false</td>
+<td>true</td>
 </tr>
 <tr><td><strong>[interface]</strong></td>
 <td> </td>
@@ -4215,7 +4215,7 @@
 <div class="footer">
 <hr class="footer" />
 <a class="reference" href="geany.txt">View document source</a>.
-Generated on: 2008-08-14 16:36 UTC.
+Generated on: 2008-08-27 16:42 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	2008-08-27 16:16:50 UTC (rev 2909)
+++ trunk/doc/geany.txt	2008-08-27 16:41:02 UTC (rev 2910)
@@ -3230,7 +3230,7 @@
                                   when editing an existing line (i.e. there
                                   is some text after the current cursor
                                   position on the line).
-scroll_stop_at_last_line          Disable scrolling past end of document       false
+scroll_stop_at_last_line          Disable scrolling past end of document       true
 **[interface]**
 show_symbol_list_expanders        Whether to show or hide the small expander   true
                                   icons on the symbol list treeview (only

Modified: trunk/src/keyfile.c
===================================================================
--- trunk/src/keyfile.c	2008-08-27 16:16:50 UTC (rev 2909)
+++ trunk/src/keyfile.c	2008-08-27 16:41:02 UTC (rev 2910)
@@ -647,7 +647,7 @@
 	editor_prefs.newline_strip = utils_get_setting_boolean(config, PACKAGE, "pref_editor_newline_strip", FALSE);
 	editor_prefs.use_gtk_word_boundaries = utils_get_setting_boolean(config, PACKAGE, "use_gtk_word_boundaries", TRUE);
 	editor_prefs.complete_snippets_whilst_editing = utils_get_setting_boolean(config, PACKAGE, "complete_snippets_whilst_editing", FALSE);
-	editor_prefs.scroll_stop_at_last_line = utils_get_setting_boolean(config, PACKAGE, "scroll_stop_at_last_line", FALSE);
+	editor_prefs.scroll_stop_at_last_line = utils_get_setting_boolean(config, PACKAGE, "scroll_stop_at_last_line", TRUE);
 	editor_prefs.line_break_column = utils_get_setting_integer(config, PACKAGE, "line_break_column", 72);
 	editor_prefs.auto_continue_multiline = utils_get_setting_boolean(config, PACKAGE, "auto_continue_multiline", TRUE);
 	editor_prefs.comment_toggle_mark = utils_get_setting_string(config, PACKAGE, "comment_toggle_mark", GEANY_TOGGLE_MARK);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list