SF.net SVN: geany:[3631] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Mon Mar 16 14:03:20 UTC 2009


Revision: 3631
          http://geany.svn.sourceforge.net/geany/?rev=3631&view=rev
Author:   ntrel
Date:     2009-03-16 14:03:20 +0000 (Mon, 16 Mar 2009)

Log Message:
-----------
Minor fixes.

Modified Paths:
--------------
    trunk/doc/geany.txt
    trunk/src/document.c
    trunk/src/socket.c

Modified: trunk/doc/geany.txt
===================================================================
--- trunk/doc/geany.txt	2009-03-16 13:45:12 UTC (rev 3630)
+++ trunk/doc/geany.txt	2009-03-16 14:03:20 UTC (rev 3631)
@@ -2566,7 +2566,7 @@
                                                           `Send text through definable commands`_ for
                                                           details).
 
-Send Selection to Verminal                                Sends the current selection or the current
+Send Selection to Terminal                                Sends the current selection or the current
                                                           line (if there is no selection) to the
                                                           embedded Terminal (VTE).
 

Modified: trunk/src/document.c
===================================================================
--- trunk/src/document.c	2009-03-16 13:45:12 UTC (rev 3630)
+++ trunk/src/document.c	2009-03-16 14:03:20 UTC (rev 3631)
@@ -2334,9 +2334,10 @@
 	gboolean ret = FALSE;
 	guint n;
 	const GString *s;
-	ScintillaObject *sci = doc->editor->sci;
+	ScintillaObject *sci;
 
 	g_return_val_if_fail(doc != NULL, FALSE);
+	sci = doc->editor->sci;
 
 	switch (FILETYPE_ID(doc->file_type))
 	{	/* continue working with the following languages, skip on all others */

Modified: trunk/src/socket.c
===================================================================
--- trunk/src/socket.c	2009-03-16 13:45:12 UTC (rev 3630)
+++ trunk/src/socket.c	2009-03-16 14:03:20 UTC (rev 3631)
@@ -385,7 +385,7 @@
 		return -1;
 	}
 
-    g_chmod(real_path, 0600);
+	g_chmod(real_path, 0600);
 
 	g_free(real_path);
 


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