Rename plugin-symbols.c pluginsymbols.c.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2760 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2008-07-07 13:08:07 +00:00
parent 32cbcd33e3
commit 61bea15355
4 changed files with 7 additions and 5 deletions

View File

@ -5,6 +5,8 @@
* src/editor.c:
Make line breaking work with multi-line comment completion and
'Newline strips trailing spaces' pref.
* doc/plugin-symbols.c, doc/Makefile.am, doc/plugins.dox:
Rename plugin-symbols.c pluginsymbols.c.
2008-07-05 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>

View File

@ -1,7 +1,7 @@
man_MANS=geany.1
DOCDIR = $(DESTDIR)$(docdir)
IMAGE_FILES = images/*.png
EXTRA_DIST = geany.html geany.css geany.txt geany.1 plugins.dox plugin-symbols.c \
EXTRA_DIST = geany.html geany.css geany.txt geany.1 plugins.dox pluginsymbols.c \
$(srcdir)/$(IMAGE_FILES)
pdf: geany.txt

View File

@ -42,7 +42,7 @@
*
* Other pages:
* - @link plugindata.h Main Datatypes and Macros @endlink
* - @link plugin-symbols.c Plugin Symbols @endlink
* - @link pluginsymbols.c Plugin Symbols @endlink
* - @link pluginmacros.h Optional Macros @endlink
* - @link signals Plugin Signals @endlink
*
@ -192,7 +192,7 @@ PluginCallback plugin_callbacks[] =
*
* Every plugin must contain some essential symbols unless it won't work. A complete
* list of all necessary and optional symbols can be found in
* @link plugin-symbols.c Plugin Symbols @endlink.
* @link pluginsymbols.c Plugin Symbols @endlink.
* Every plugin should include "geany.h" and "plugindata.h" which provide necessary
* preprocessor macros and other basic information.
* There are two important preprocessor macros which need to be used at the beginning:

View File

@ -1,5 +1,5 @@
/*
* plugin-symbols.c - this file is part of Geany, a fast and lightweight IDE
* pluginsymbols.c - this file is part of Geany, a fast and lightweight IDE
*
* Copyright 2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* Copyright 2008 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
@ -25,7 +25,7 @@
/* Note: this file is for Doxygen only. */
/**
* @file plugin-symbols.c
* @file pluginsymbols.c
* Symbols declared from within plugins.
*
* Geany looks for these symbols (arrays, pointers and functions) when initializing