Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Sun, 06 May 2012 06:14:19
Commit: 11c3c91525919cb5b9f7bf168cbe8e894f345f88
https://github.com/geany/geany/commit/11c3c91525919cb5b9f7bf168cbe8e894f345…
Log Message:
-----------
Fixed a wrong reference to utils_open_browser()
Modified Paths:
--------------
doc/pluginsymbols.c
Modified: doc/pluginsymbols.c
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -103,7 +103,7 @@
void plugin_cleanup();
/** Called whenever the plugin should show its documentation (if any). This may open a dialog,
- * a browser with a website or a local installed HTML help file(see utils_start_browser())
+ * a browser with a website or a local installed HTML help file(see utils_open_browser())
* or something else.
* Can be omitted when not needed. */
void plugin_help();
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
Branch: refs/heads/master
Author: Enrico Tröger <enrico.troeger(a)uvena.de>
Committer: Enrico Tröger <enrico.troeger(a)uvena.de>
Date: Fri, 04 May 2012 21:13:36
Commit: 9a80935835c3b49c0f29876e9d8efa0d309d49be
https://github.com/geany/geany/commit/9a80935835c3b49c0f29876e9d8efa0d309d4…
Log Message:
-----------
Use the same Python interpreter for the genapi.py script as for the Waf script
This ensures we call the genapi.py script with the same Python interpreter as the Waf
build system was called. This is relevant if the used interpreter is not 'python' but e.g.
python2 or python2.6 or whatever.
Modified Paths:
--------------
wscript
Modified: wscript
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -319,7 +319,7 @@ def build(bld):
name = 'geanyfunctions.h',
before = ['c', 'cxx'],
cwd = '%s/plugins' % bld.path.abspath(),
- rule = 'python genapi.py -q')
+ rule = '%s genapi.py -q' % sys.executable)
# Plugins
if bld.env['HAVE_PLUGINS'] == 1:
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).