Branch: refs/heads/document-messages
Author: Nick Treleaven <nick.treleaven(a)btinternet.com>
Committer: Nick Treleaven <nick.treleaven(a)btinternet.com>
Date: Mon, 23 Apr 2012 15:17:40
Commit: 1a9451bfc4915ada3ab2d0743293532f574cad00
https://github.com/geany/geany/commit/1a9451bfc4915ada3ab2d0743293532f574ca…
Log Message:
-----------
Fix NULL tags array warning in document_highlight_tags
Modified Paths:
--------------
src/document.c
Modified: src/document.c
4 files changed, 3 insertions(+), 1 deletions(-)
===================================================================
@@ -2312,6 +2312,8 @@ void document_highlight_tags(GeanyDocument *doc)
default:
return; /* early out if type keywords are not supported */
}
+ if (!app->tm_workspace->work_object.tags_array)
+ return;
/* get any type keywords and tell scintilla about them
* this will cause the type keywords to be colourized in scintilla */
@@ -2895,7 +2897,7 @@ gboolean document_check_disk_status(GeanyDocument *doc, gboolean force)
g_return_val_if_fail(doc != NULL, FALSE);
/* ignore remote files and documents that have never been saved to disk */
- if (notebook_switch_in_progress() || file_prefs.disk_check_timeout == 0
+ if (notebook_switch_in_progress() || file_prefs.disk_check_timeout == 0
|| doc->real_path == NULL || doc->priv->is_remote)
return FALSE;
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
Branch: refs/heads/document-messages
Author: Lex Trotman <elextr(a)gmail.com>
Committer: Lex Trotman <elextr(a)gmail.com>
Date: Sun, 22 Apr 2012 00:54:41
Commit: 4bd962ee8dde25b4ce5605ce7b4bf43d79d066f6
https://github.com/geany/geany/commit/4bd962ee8dde25b4ce5605ce7b4bf43d79d06…
Log Message:
-----------
Remove hard coded option that prevents 64 bit tag generation.
On GNU X86-64 systems the predefined macros are required
to choose the correct headers, so tag definition fails with
-undef. Removed it from hardcoded, systems that need it can
add it to CFLAGS.
Modified Paths:
--------------
src/symbols.c
Modified: src/symbols.c
7 files changed, 3 insertions(+), 4 deletions(-)
===================================================================
@@ -1296,7 +1296,7 @@ static void free_iter_slice_list(gpointer data)
/* inserts a @data in @table on key @tag.
* previous data is not overwritten if the key is duplicated, but rather the
* two values are kept in a list
- *
+ *
* table is: GHashTable<TMTag, GList<GList<TMTag>>> */
static void tags_table_insert(GHashTable *table, TMTag *tag, GList *data)
{
@@ -1702,9 +1702,8 @@ static GeanyFiletype *detect_global_tags_filetype(const gchar *utf8_filename)
* CFLAGS=-I/home/user/libname-1.x geany -g libname.d.tags libname.h */
int symbols_generate_global_tags(int argc, char **argv, gboolean want_preprocess)
{
- /* -E pre-process, -dD output user macros, -p prof info (?),
- * -undef remove builtin macros (seems to be needed with FC5 gcc 4.1.1) */
- const char pre_process[] = "gcc -E -dD -p -undef";
+ /* -E pre-process, -dD output user macros, -p prof info (?) */
+ const char pre_process[] = "gcc -E -dD -p";
if (argc > 2)
{
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
Branch: refs/heads/document-messages
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Thu, 19 Apr 2012 15:03:28
Commit: d3aed9f08b843ea8df7dc39c26e00deb59813845
https://github.com/geany/geany/commit/d3aed9f08b843ea8df7dc39c26e00deb59813…
Log Message:
-----------
Adding a first version of Slovakian translation provided by Tomáš Vadina
Modified Paths:
--------------
po/sk.po
Modified: po/sk.po
5381 files changed, 5381 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).