Branch: refs/heads/master
Author: Jiří Techet <techet(a)gmail.com>
Committer: Jiří Techet <techet(a)gmail.com>
Date: Thu, 09 Jun 2016 07:41:09 UTC
Commit: ca8ef9643e7ca347a03875798fa1bbd122e9c917
https://github.com/geany/geany/commit/ca8ef9643e7ca347a03875798fa1bbd122e9c…
Log Message:
-----------
Add parentheses in an if to make the condition more clear
Modified Paths:
--------------
src/symbols.c
Modified: src/symbols.c
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -2080,8 +2080,8 @@ static GPtrArray *filter_tags(GPtrArray *tags, TMTag *current_tag, gboolean defi
foreach_ptr_array(tmtag, i, tags)
{
- if (definition && !(tmtag->type & forward_types) ||
- !definition && (tmtag->type & forward_types))
+ if ((definition && !(tmtag->type & forward_types)) ||
+ (!definition && (tmtag->type & forward_types)))
{
/* If there are typedefs of e.g. a struct such as
* "typedef struct Foo {} Foo;", filter out the typedef unless
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Chris Mayo <aklhfex(a)gmail.com>
Committer: Chris Mayo <aklhfex(a)gmail.com>
Date: Mon, 28 Mar 2016 18:40:37 UTC
Commit: 3dda6180ceb293a1aa6661443cda04ec58806359
https://github.com/geany/geany/commit/3dda6180ceb293a1aa6661443cda04ec58806…
Log Message:
-----------
javascript: Add support for ECMAScript 6 classes keywords
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classeshttp://www.ecma-international.org/ecma-262/6.0/#sec-keywordshttp://www.ecma-international.org/ecma-262/6.0/#sec-constructor
Modified Paths:
--------------
data/filedefs/filetypes.javascript
Modified: data/filedefs/filetypes.javascript
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -3,8 +3,8 @@
[keywords]
# all items must be in one line
-primary=break case catch const continue default delete do each else false finally for function get if in Infinity instanceof let NaN new null return set switch this throw true try typeof undefined var void while with yield prototype
-secondary=Array Boolean Date Function Math Number Object String RegExp EvalError Error RangeError ReferenceError SyntaxError TypeError URIError prototype decodeURI decodeURIComponent encodeURI encodeURIComponent eval isFinite isNaN parseFloat parseInt
+primary=break case catch class const continue default delete do each else extends false finally for function get if in Infinity instanceof let NaN new null return set static super switch this throw true try typeof undefined var void while with yield prototype
+secondary=Array Boolean Date Function Math Number Object String RegExp EvalError Error RangeError ReferenceError SyntaxError TypeError URIError constructor prototype decodeURI decodeURIComponent encodeURI encodeURIComponent eval isFinite isNaN parseFloat parseInt
[settings]
# default extension used when saving files
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Wed, 08 Jun 2016 21:54:39 UTC
Commit: e328434a1fb1a42289ca1b4f28f03d143d5f048b
https://github.com/geany/geany/commit/e328434a1fb1a42289ca1b4f28f03d143d5f0…
Log Message:
-----------
Merge pull request #980 from cjmayo/ecma_classes
javascript: Add ECMAScript 6 classes keywords
Modified Paths:
--------------
data/filedefs/filetypes.javascript
Modified: data/filedefs/filetypes.javascript
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -3,8 +3,8 @@
[keywords]
# all items must be in one line
-primary=break case catch const continue default delete do each else false finally for function get if in Infinity instanceof let NaN new null return set switch this throw true try typeof undefined var void while with yield prototype
-secondary=Array Boolean Date Function Math Number Object String RegExp EvalError Error RangeError ReferenceError SyntaxError TypeError URIError prototype decodeURI decodeURIComponent encodeURI encodeURIComponent eval isFinite isNaN parseFloat parseInt
+primary=break case catch class const continue default delete do each else extends false finally for function get if in Infinity instanceof let NaN new null return set static super switch this throw true try typeof undefined var void while with yield prototype
+secondary=Array Boolean Date Function Math Number Object String RegExp EvalError Error RangeError ReferenceError SyntaxError TypeError URIError constructor prototype decodeURI decodeURIComponent encodeURI encodeURIComponent eval isFinite isNaN parseFloat parseInt
[settings]
# default extension used when saving files
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Wed, 08 Jun 2016 10:30:03 UTC
Commit: 81a5b771b51c45a11584e091ba0995984e1f4495
https://github.com/geany/geany/commit/81a5b771b51c45a11584e091ba0995984e1f4…
Log Message:
-----------
scripts/cross-build-mingw.sh: Allow to specify the build directory
This can be useful to maintain 2 separate build directories in parallel,
i.e. for GTK2 and 3 builds.
Modified Paths:
--------------
scripts/cross-build-mingw.sh
Modified: scripts/cross-build-mingw.sh
12 lines changed, 7 insertions(+), 5 deletions(-)
===================================================================
@@ -22,17 +22,19 @@ GTK3=no
CONFIGUREFLAGS="--enable-nls"
MAKEFLAGS="${MAKEFLAGS:--j2}"
-while getopts '32h' o; do
+while getopts '32b:h' o; do
case "$o" in
3) GTK3=yes;;
2) GTK3=no;;
+ b) BUILDDIR="$OPTARG";;
h)
cat <<EOF
-USAGE: $0 [-2|-3] [-h]
+USAGE: $0 [-2|-3] [-b DIR] [-h]
--2 Build against GTK2
--3 Build against GTK3
--h Show this help and exit
+-2 Build against GTK2
+-3 Build against GTK3
+-b DIR Use DIR as build directory
+-h Show this help and exit
EOF
exit 0;;
*) echo "Invalid option $o (see -h)">&2; exit 1;;
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).