Fix some spacing.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4534 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2010-01-18 17:17:34 +00:00
parent cfa2b8b532
commit a81094c197

View File

@ -481,19 +481,20 @@ void plugin_cleanup(void)
}
* @endcode
*
* @section building Building
* @code gcc -c plugin.c -fPIC `pkg-config --cflags geany` @endcode
* @section building Building
*
* to make plugin.o, then:
* @code gcc -c plugin.c -fPIC `pkg-config --cflags geany` @endcode
*
* @code gcc plugin.o -o plugin.so -shared `pkg-config --libs geany`@endcode
* to make plugin.o, then:
*
* to make the plugin library plugin.so (or plugin.dll on Windows).
* @code gcc plugin.o -o plugin.so -shared `pkg-config --libs geany` @endcode
*
* Then just put the library into one of the paths Geany looks for plugins in, e.g. $prefix/lib/geany.
* See @ref paths "Installation paths" for details.
* to make the plugin library plugin.so (or plugin.dll on Windows).
*
* @section realfunc Real functionality
* Then just put the library into one of the paths Geany looks for plugins in, e.g. $prefix/lib/geany.
* See @ref paths "Installation paths" for details.
*
* @section realfunc Real functionality
*
* If you think this plugin seems not to implement any functionality right now and only wastes
* some memory, you are right. But it should compile and load/unload in Geany nicely.