Branch: refs/heads/master
Home: https://github.com/geany/geany
Commit: cca258ddb70d1dac4273f613b5af032a98b45242
https://github.com/geany/geany/commit/cca258ddb70d1dac4273f613b5af032a98b45…
Author: Nick Treleaven <nick.treleaven(a)btinternet.com>
Date: 2011-11-14 (Mon, 14 Nov 2011)
Changed paths:
M src/highlightingmappings.h
Log Message:
-----------
Workaround gcc function address comparison warning
E.g.
highlighting.c:950:3: error: the address of
'highlighting_styles_ADA' will always evaluate as 'true'
Note: This commit also contains some trailing whitespace removal.
Branch: refs/heads/master
Home: https://github.com/geany/geany
Commit: a625955a43a484fbd23f9585cc4f4f4f256e87b5
https://github.com/geany/geany/commit/a625955a43a484fbd23f9585cc4f4f4f256e8…
Author: Lex Trotman <elextr(a)gmail.com>
Date: 2011-11-13 (Sun, 13 Nov 2011)
Changed paths:
M src/filetypes.c
Log Message:
-----------
Provide error message for extract regex
Print the GError message if the users filetype extract regex does
not compile.
Branch: refs/heads/master
Home: https://github.com/geany/geany
Commit: cb72e1d85fa687d88a47eba43c47b1ee4dddea80
https://github.com/geany/geany/commit/cb72e1d85fa687d88a47eba43c47b1ee4ddde…
Author: Colomban Wendling <ban(a)herbesfolles.org>
Date: 2011-11-13 (Sun, 13 Nov 2011)
Changed paths:
M src/filetypes.c
Log Message:
-----------
Fix possible crashers in filetypes_detect_from_file_internal()
* Never try to do a regex match on a NULL string;
* Don't try to unref a possibly NULL regex.
Branch: refs/heads/master
Home: https://github.com/geany/geany
Commit: 70f41f6485c717a6c5e988062f823628c559740f
https://github.com/geany/geany/commit/70f41f6485c717a6c5e988062f823628c5597…
Author: Enrico Tröger <enrico.troeger(a)uvena.de>
Date: 2011-11-13 (Sun, 13 Nov 2011)
Changed paths:
M HACKING
M data/filetype_extensions.conf
M data/filetypes.html
A data/filetypes.objectivec
M data/filetypes.php
M data/filetypes.xml
M src/Makefile.am
M src/dialogs.c
M src/document.c
M src/filetypes.c
M src/filetypes.h
M src/highlighting.c
A src/highlightingmappings.h
M tagmanager/Makefile.am
M tagmanager/makefile.win32
A tagmanager/objc.c
M tagmanager/parsers.h
M wscript
Log Message:
-----------
Merge branch 'master' of github.com:geany/geany
Branch: refs/heads/master
Home: https://github.com/geany/geany
Commit: 6cee28d677d7fd11058de7f4da5562475bd14d1a
https://github.com/geany/geany/commit/6cee28d677d7fd11058de7f4da5562475bd14…
Author: Matthew Brush <matt(a)geany.org>
Date: 2011-11-13 (Sun, 13 Nov 2011)
Changed paths:
M src/dialogs.c
Log Message:
-----------
Get rid of warning in on_file_notify()
Works around the issue discussed in commit 1e54fb6 by using the file
chooser's property accessor function.
Rename on_file_notify() to better explain its purpose.
Branch: refs/heads/master
Home: https://github.com/geany/geany
Commit: a00366b266cac650134370103f5b3b5d3a08a700
https://github.com/geany/geany/commit/a00366b266cac650134370103f5b3b5d3a08a…
Author: Colomban Wendling <ban(a)herbesfolles.org>
Date: 2011-11-11 (Fri, 11 Nov 2011)
Changed paths:
M HACKING
Log Message:
-----------
Update HACKING for highlighting setup refactoring
Commit: e53d5b82992550921451d30487b1a426477338f5
https://github.com/geany/geany/commit/e53d5b82992550921451d30487b1a42647733…
Author: Colomban Wendling <ban(a)herbesfolles.org>
Date: 2011-11-12 (Sat, 12 Nov 2011)
Changed paths:
M HACKING
M data/filetypes.html
M data/filetypes.php
M data/filetypes.xml
M src/Makefile.am
M src/highlighting.c
A src/highlightingmappings.h
Log Message:
-----------
Merge branch 'highlighting-rewrite'
Commit: 8942bc810bc2091581027ea578717cf1d8342af1
https://github.com/geany/geany/commit/8942bc810bc2091581027ea578717cf1d8342…
Author: Colomban Wendling <ban(a)herbesfolles.org>
Date: 2011-11-12 (Sat, 12 Nov 2011)
Changed paths:
M data/filetype_extensions.conf
A data/filetypes.objectivec
M src/document.c
M src/filetypes.c
M src/filetypes.h
M src/highlighting.c
M src/highlightingmappings.h
M tagmanager/Makefile.am
M tagmanager/makefile.win32
A tagmanager/objc.c
M tagmanager/parsers.h
M wscript
Log Message:
-----------
Add Objective-C support
Based on a patch from Elias Pschernig, thanks.
Parser was taken from upstream CTags.
Closes patch#3325139.
Compare: https://github.com/geany/geany/compare/9bffb94...8942bc8
Branch: refs/heads/master
Home: https://github.com/geany/geany
Commit: 9bffb94cc43b8ca8a14214cfc8d5d47dfb6a2cd3
https://github.com/geany/geany/commit/9bffb94cc43b8ca8a14214cfc8d5d47dfb6a2…
Author: Matthew Brush <matt(a)geany.org>
Date: 2011-11-11 (Fri, 11 Nov 2011)
Changed paths:
M HACKING
M src/callbacks.c
M src/document.c
M src/document.h
M src/keybindings.c
Log Message:
-----------
Real-time type keyword highlighting
* Add new function: document_update_tags().
* Refactor the various tag update functions into document_update_tags().
* Remove extra call to update the tags in document_new_file().