Changed StyleSet struct to use Style array, which can use less

memory. Added separate struct for the common style set. Also
use a struct for tracking the loaded global tags files. Renamed
some static functions.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@854 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2006-09-30 11:13:58 +00:00
parent 20863864b1
commit e721ae69b0
3 changed files with 1376 additions and 1347 deletions

View File

@ -1,3 +1,12 @@
2006-09-30 Nick Treleaven <nick.treleaven@btinternet.com>
* src/highlighting.c, src/highlighting.h:
Changed StyleSet struct to use Style array, which can use less
memory. Added separate struct for the common style set. Also
use a struct for tracking the loaded global tags files. Renamed
some static functions.
2006-09-29 Enrico Tröger <enrico.troeger@uvena.de>
* src/filetypes.c, data/filetype_extensions.conf:
@ -5,7 +14,7 @@
* doc/geany.docbook:
Updated information for Debian and Gentoo packages.
* New release: Geany 0.9 "Kintaro".
* THANKS, src/about.c: Changed credtits of topi.
* THANKS, src/about.c: Changed credits of topi.
2006-09-27 Nick Treleaven <nick.treleaven@btinternet.com>

File diff suppressed because it is too large Load Diff

View File

@ -32,14 +32,6 @@
#include "ScintillaWidget.h"
typedef struct
{
gint styling[55][4];
gchar **keywords;
gchar *wordchars;
} style_set;
void styleset_free_styles(void);
void styleset_common(ScintillaObject *sci, gint style_bits);