Branch: refs/heads/master
Author: A. Tombs <lazylumpster+github(a)gmail.com>
Committer: elextr <elextr(a)gmail.com>
Date: Wed, 22 Mar 2017 00:06:47 UTC
Commit: 33762f5225cb7751e42808cce6d65f471c2dc678
https://github.com/geany/geany/commit/33762f5225cb7751e42808cce6d65f471c2dc…
Log Message:
-----------
Add parfor to Matlab keyword list (#1021)
Add parfor to Matlab keyword list
Add `parfor` to the list of keywords to be highlighted in Matlab script sources. `parfor` is a Matlab keyword that can be used in place of `for` to achieve parallel processing.
Modified Paths:
--------------
data/filedefs/filetypes.matlab
Modified: data/filedefs/filetypes.matlab
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -13,7 +13,7 @@ doublequotedstring=string_2
[keywords]
# all items must be in one line
-primary=break case catch classdef continue else elseif end enumeration events for function global if methods otherwise persistent properties return switch try while
+primary=break case catch classdef continue else elseif end enumeration events for function global if methods otherwise parfor persistent properties return switch try while
[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: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Sun, 19 Mar 2017 17:57:38 UTC
Commit: 6e1a1633b5192cd5a788dc30810978caa86bc7e2
https://github.com/geany/geany/commit/6e1a1633b5192cd5a788dc30810978caa86bc…
Log Message:
-----------
Update bugtracker URL to github
Modified Paths:
--------------
configure.ac
Modified: configure.ac
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_PREREQ([2.60])
AC_INIT([Geany], [1.31],
- [https://sourceforge.net/tracker/?group_id=153444&atid=787791])
+ [https://github.com/geany/geany/issues])
AC_CONFIG_SRCDIR([src/geany.h])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
--------------
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: Sun, 19 Mar 2017 17:20:53 UTC
Commit: 46812c47fbb363cd8d8f418cf3c7b10f280f7051
https://github.com/geany/geany/commit/46812c47fbb363cd8d8f418cf3c7b10f280f7…
Log Message:
-----------
Fix scripts/set-release-date when LC_TIME is set
We actually need to override LC_TIME if it is set, so use LC_ALL which
overrides everything rather than LANG that is used as a fallback.
Modified Paths:
--------------
scripts/set-release-date
Modified: scripts/set-release-date
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -2,7 +2,7 @@
set -e
-export LANG=C
+export LC_ALL=C
DATE=${1:-now}
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).