SF.net SVN: geany:[4186] trunk/HACKING

ntrel at users.sourceforge.net ntrel at xxxxx
Mon Sep 14 14:39:11 UTC 2009


Revision: 4186
          http://geany.svn.sourceforge.net/geany/?rev=4186&view=rev
Author:   ntrel
Date:     2009-09-14 14:39:11 +0000 (Mon, 14 Sep 2009)

Log Message:
-----------
Remove accidentally added tab indentation.

Modified Paths:
--------------
    trunk/HACKING

Modified: trunk/HACKING
===================================================================
--- trunk/HACKING	2009-09-14 12:32:50 UTC (rev 4185)
+++ trunk/HACKING	2009-09-14 14:39:11 UTC (rev 4186)
@@ -42,11 +42,11 @@
 In general it's best to work from the current SVN, but we accept patches
 against other releases::
 
-	$ svn diff > fix-some-bug.patch
+    $ svn diff > fix-some-bug.patch
 
 If you're not using SVN, you can use the diff command::
 
-	$ diff -u originalpath modifiedpath > new-feature.patch
+    $ diff -u originalpath modifiedpath > new-feature.patch
 
 .. note::
     Please make sure patches follow the style of existing code - In
@@ -75,10 +75,10 @@
 
 .. warning::
 
-	Some structs like GeanyKeyGroupInfo and GeanyCallback cannot be
-	appended to without breaking the ABI because they are used to declare
-	structs by plugins, not just for accessing struct members through
-	a pointer.
+    Some structs like GeanyKeyGroupInfo and GeanyCallback cannot be
+    appended to without breaking the ABI because they are used to declare
+    structs by plugins, not just for accessing struct members through
+    a pointer.
 
 Before the 1.0 release series, the ABI can change when necessary, and
 even the API can change. An ABI change just means that all plugins will
@@ -406,17 +406,17 @@
 
 Example::
 
-	Program received signal SIGINT, Interrupt.
-	0x00d16402 in __kernel_vsyscall ()
-	(gdb) call plugin_new("./plugins/.libs/demoplugin.so")
-	** INFO: Loaded:   ./plugins/.libs/demoplugin.so (Demo)
-	$1 = (Plugin *) 0x905a890
-	(gdb) c
-	Continuing.
+    Program received signal SIGINT, Interrupt.
+    0x00d16402 in __kernel_vsyscall ()
+    (gdb) call plugin_new("./plugins/.libs/demoplugin.so")
+    ** INFO: Loaded:   ./plugins/.libs/demoplugin.so (Demo)
+    $1 = (Plugin *) 0x905a890
+    (gdb) c
+    Continuing.
 
-	Program received signal SIGINT, Interrupt.
-	0x00d16402 in __kernel_vsyscall ()
-	(gdb) call plugin_free(0x905a890)
-	** INFO: Unloaded: ./plugins/.libs/demoplugin.so
-	(gdb) c
-	Continuing.
+    Program received signal SIGINT, Interrupt.
+    0x00d16402 in __kernel_vsyscall ()
+    (gdb) call plugin_free(0x905a890)
+    ** INFO: Unloaded: ./plugins/.libs/demoplugin.so
+    (gdb) c
+    Continuing.


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