Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Wed, 23 Apr 2014 07:36:29 UTC
Commit: c172ff202190fbda3a3dc515dd4d442d7c4ab703
https://github.com/geany/geany-plugins/commit/c172ff202190fbda3a3dc515dd4d4…
Log Message:
-----------
Merge pull request #147 from evgeni/typos
fix a couple of typos
Modified Paths:
--------------
multiterm/src/defconf.vala
treebrowser/src/treebrowser.c
Modified: multiterm/src/defconf.vala
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -35,12 +35,12 @@ namespace MultiTerm
#======================================================================#
# #
# You can configure the behaviour of the MultiTerm plugin by adjusting #
-# the values in this file. Lines begining with a # are considered #
+# the values in this file. Lines beginning with a # are considered #
# comments and are left as is. Group/section names go in [] and keys #
# and values are separated by an = symbol. Where more than one value #
# can be supplied, as in a list, separate the values with the ; symbol.#
# #
-# Groups/section names begining with 'shell=' denote a type of #
+# Groups/section names beginning with 'shell=' denote a type of #
# terminal/shell that can be opened. The name of the shell follows #
# the = symbol. Each shell can have it's own specific VTE #
# configuration and can run it's own child command. As an example, if #
Modified: treebrowser/src/treebrowser.c
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -1157,8 +1157,8 @@ on_menu_close_children(GtkMenuItem *menuitem, gchar *uri)
{
if (documents[i]->is_valid)
{
- /* the docuemnt filename shoudl always be longer than the uri when closing children
- * Compare the beginingin of the filename string to see if it matchs the uri*/
+ /* the document filename should always be longer than the uri when closing children
+ * Compare the beginning of the filename string to see if it matchs the uri*/
if (strlen(documents[i]->file_name) > uri_len)
{
if (strncmp(uri, documents[i]->file_name, uri_len)==0)
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Evgeni Golov <evgeni(a)debian.org>
Committer: Evgeni Golov <evgeni(a)debian.org>
Date: Wed, 23 Apr 2014 06:24:24 UTC
Commit: 635829c24e9a684b7403d5170358d722f7205579
https://github.com/geany/geany-plugins/commit/635829c24e9a684b7403d5170358d…
Log Message:
-----------
fix a couple of typos
some of them were spotted by Debian's lintian, thanks for that!
Modified Paths:
--------------
multiterm/src/defconf.vala
treebrowser/src/treebrowser.c
Modified: multiterm/src/defconf.vala
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -35,12 +35,12 @@ namespace MultiTerm
#======================================================================#
# #
# You can configure the behaviour of the MultiTerm plugin by adjusting #
-# the values in this file. Lines begining with a # are considered #
+# the values in this file. Lines beginning with a # are considered #
# comments and are left as is. Group/section names go in [] and keys #
# and values are separated by an = symbol. Where more than one value #
# can be supplied, as in a list, separate the values with the ; symbol.#
# #
-# Groups/section names begining with 'shell=' denote a type of #
+# Groups/section names beginning with 'shell=' denote a type of #
# terminal/shell that can be opened. The name of the shell follows #
# the = symbol. Each shell can have it's own specific VTE #
# configuration and can run it's own child command. As an example, if #
Modified: treebrowser/src/treebrowser.c
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -1157,8 +1157,8 @@ on_menu_close_children(GtkMenuItem *menuitem, gchar *uri)
{
if (documents[i]->is_valid)
{
- /* the docuemnt filename shoudl always be longer than the uri when closing children
- * Compare the beginingin of the filename string to see if it matchs the uri*/
+ /* the document filename should always be longer than the uri when closing children
+ * Compare the beginning of the filename string to see if it matchs the uri*/
if (strlen(documents[i]->file_name) > uri_len)
{
if (strncmp(uri, documents[i]->file_name, uri_len)==0)
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Enrico Tröger <enrico.troeger(a)uvena.de>
Committer: Enrico Tröger <enrico.troeger(a)uvena.de>
Date: Sun, 20 Apr 2014 15:55:38 UTC
Commit: cbfe198c0dfdd1a5823d1990c9428babea457feb
https://github.com/geany/geany-plugins/commit/cbfe198c0dfdd1a5823d1990c9428…
Log Message:
-----------
Merge pull request #145 from b4n/spellcheck/no-embedded-default-styles
spellcheck: Don't check default styles of embedded HTML scripts
Modified Paths:
--------------
spellcheck/src/speller.c
Modified: spellcheck/src/speller.c
7 lines changed, 0 insertions(+), 7 deletions(-)
===================================================================
@@ -845,41 +845,34 @@ gboolean sc_speller_is_text(GeanyDocument *doc, gint pos)
case SCE_H_SGML_DOUBLESTRING:
case SCE_H_SGML_SIMPLESTRING:
case SCE_H_SGML_1ST_PARAM_COMMENT:
- case SCE_HJ_DEFAULT:
case SCE_HJ_COMMENT:
case SCE_HJ_COMMENTLINE:
case SCE_HJ_COMMENTDOC:
case SCE_HJ_DOUBLESTRING:
case SCE_HJ_SINGLESTRING:
case SCE_HJ_STRINGEOL:
- case SCE_HB_DEFAULT:
case SCE_HB_COMMENTLINE:
case SCE_HB_STRING:
case SCE_HB_STRINGEOL:
- case SCE_HBA_DEFAULT:
case SCE_HBA_COMMENTLINE:
case SCE_HBA_STRING:
case SCE_HBA_STRINGEOL:
- case SCE_HJA_DEFAULT:
case SCE_HJA_COMMENT:
case SCE_HJA_COMMENTLINE:
case SCE_HJA_COMMENTDOC:
case SCE_HJA_DOUBLESTRING:
case SCE_HJA_SINGLESTRING:
case SCE_HJA_STRINGEOL:
- case SCE_HP_DEFAULT:
case SCE_HP_COMMENTLINE:
case SCE_HP_STRING:
case SCE_HP_CHARACTER:
case SCE_HP_TRIPLE:
case SCE_HP_TRIPLEDOUBLE:
- case SCE_HPA_DEFAULT:
case SCE_HPA_COMMENTLINE:
case SCE_HPA_STRING:
case SCE_HPA_CHARACTER:
case SCE_HPA_TRIPLE:
case SCE_HPA_TRIPLEDOUBLE:
- case SCE_HPHP_DEFAULT:
case SCE_HPHP_SIMPLESTRING:
case SCE_HPHP_HSTRING:
case SCE_HPHP_COMMENT:
--------------
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, 20 Apr 2014 15:33:15 UTC
Commit: 136362dd0b05127e7ccefe29c538fd2057f0ed7e
https://github.com/geany/geany-plugins/commit/136362dd0b05127e7ccefe29c538f…
Log Message:
-----------
spellcheck: Don't check default styles of embedded HTML scripts
Don't check the spelling for the default styles used by embedded
scripting languages inside HTML.
While spellchecking the default HTML and SGML styles makes sense since
it includes most text, it doesn't make sense to do so for default style
of embedded scripting languages (such as PHP, Python, etc.), as those
"default" styles are the bare identifiers of the language (classes,
functions, etc.).
This doesn't affect HTML or SGML embedded in scripting languages, as
the default style for the scripting languages have a different value
than the ones for the markup languages.
Modified Paths:
--------------
spellcheck/src/speller.c
Modified: spellcheck/src/speller.c
7 lines changed, 0 insertions(+), 7 deletions(-)
===================================================================
@@ -845,41 +845,34 @@ gboolean sc_speller_is_text(GeanyDocument *doc, gint pos)
case SCE_H_SGML_DOUBLESTRING:
case SCE_H_SGML_SIMPLESTRING:
case SCE_H_SGML_1ST_PARAM_COMMENT:
- case SCE_HJ_DEFAULT:
case SCE_HJ_COMMENT:
case SCE_HJ_COMMENTLINE:
case SCE_HJ_COMMENTDOC:
case SCE_HJ_DOUBLESTRING:
case SCE_HJ_SINGLESTRING:
case SCE_HJ_STRINGEOL:
- case SCE_HB_DEFAULT:
case SCE_HB_COMMENTLINE:
case SCE_HB_STRING:
case SCE_HB_STRINGEOL:
- case SCE_HBA_DEFAULT:
case SCE_HBA_COMMENTLINE:
case SCE_HBA_STRING:
case SCE_HBA_STRINGEOL:
- case SCE_HJA_DEFAULT:
case SCE_HJA_COMMENT:
case SCE_HJA_COMMENTLINE:
case SCE_HJA_COMMENTDOC:
case SCE_HJA_DOUBLESTRING:
case SCE_HJA_SINGLESTRING:
case SCE_HJA_STRINGEOL:
- case SCE_HP_DEFAULT:
case SCE_HP_COMMENTLINE:
case SCE_HP_STRING:
case SCE_HP_CHARACTER:
case SCE_HP_TRIPLE:
case SCE_HP_TRIPLEDOUBLE:
- case SCE_HPA_DEFAULT:
case SCE_HPA_COMMENTLINE:
case SCE_HPA_STRING:
case SCE_HPA_CHARACTER:
case SCE_HPA_TRIPLE:
case SCE_HPA_TRIPLEDOUBLE:
- case SCE_HPHP_DEFAULT:
case SCE_HPHP_SIMPLESTRING:
case SCE_HPHP_HSTRING:
case SCE_HPHP_COMMENT:
--------------
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, 20 Apr 2014 12:14:12 UTC
Commit: 390f005a9ea03787dbb19aabeec59dcabf3b6f84
https://github.com/geany/geany-plugins/commit/390f005a9ea03787dbb19aabeec59…
Log Message:
-----------
geanypy: Try to disable C compiler warnings about long long usage
Enable the -Wno-long-long flag if the compiler understands it, because
Python uses it. No need to do a proper check for whether the compiler
has a long long type since it's not our code that uses it anyway.
Modified Paths:
--------------
build/geanypy.m4
Modified: build/geanypy.m4
5 lines changed, 4 insertions(+), 1 deletions(-)
===================================================================
@@ -21,7 +21,10 @@ AC_DEFUN([GP_CHECK_GEANYPY],
dnl check for C flags we wish to use
GEANYPY_CFLAGS=
- for flag in -fno-strict-aliasing -Wno-write-strings; do
+ for flag in -fno-strict-aliasing \
+ -Wno-write-strings \
+ -Wno-long-long
+ do
GP_CHECK_CFLAG([$flag], [GEANYPY_CFLAGS="${GEANYPY_CFLAGS} $flag"])
done
AC_SUBST([GEANYPY_CFLAGS])
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).