Rerun ./scripts/fix-alignment.pl.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4337 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2009-10-19 11:50:36 +00:00
parent 6d99470e78
commit fdb87f98cc
2 changed files with 3 additions and 3 deletions

View File

@ -2176,7 +2176,7 @@ void build_load_menu(GKeyFile *config, GeanyBuildSource src, gpointer p)
GeanyProject *pj;
gchar **ftlist;
gchar *value, *basedir, *makebasedir;
gboolean bvalue=FALSE;
gboolean bvalue = FALSE;
if (g_key_file_has_group(config, build_grp_name))
{
@ -2320,7 +2320,7 @@ void build_load_menu(GKeyFile *config, GeanyBuildSource src, gpointer p)
value = g_key_file_get_string(config, "tools", "make_cmd", NULL);
if (value != NULL)
{
if (non_ft_pref == NULL )
if (non_ft_pref == NULL)
non_ft_pref = g_new0(GeanyBuildCommand, build_groups_count[GEANY_GBG_NON_FT]);
ASSIGNIF(non_ft_pref, GEANY_GBO_CUSTOM, "Make Custom _Target",
g_strdup_printf("%s ", value));

View File

@ -207,7 +207,7 @@ void sci_undo(ScintillaObject *sci)
void sci_redo(ScintillaObject *sci)
{
if (sci_can_redo(sci) )
if (sci_can_redo(sci))
SSM(sci, SCI_REDO, 0, 0);
}