Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Sat, 26 Jan 2013 13:01:31 UTC
Commit: 258ea70ad7941e8f9a443d5bae4941c803df8ee6
https://github.com/geany/geany/commit/258ea70ad7941e8f9a443d5bae4941c803df8…
Log Message:
-----------
Merge pull request #95 from YosefOr/patch-7
Update Hebrew translator
Modified Paths:
--------------
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Lex <elextr(a)gmail.com>
Committer: Lex <elextr(a)gmail.com>
Date: Thu, 17 Jan 2013 04:50:40 UTC
Commit: bd7b56a80f2c5c250b3f3d8d94f05a7d3513e73d
https://github.com/geany/geany/commit/bd7b56a80f2c5c250b3f3d8d94f05a7d3513e…
Log Message:
-----------
Comment future fixes/additions
Note where Asciidoc features need to be supported that would
prevent code sharing with other markup parsers.
Modified Paths:
--------------
tagmanager/ctags/asciidoc.c
Modified: tagmanager/ctags/asciidoc.c
5 files changed, 3 insertions(+), 2 deletions(-)
===================================================================
@@ -121,7 +121,8 @@ static int get_kind(char c)
/* computes the length of an UTF-8 string
- * if the string doesn't look like UTF-8, return -1 */
+ * if the string doesn't look like UTF-8, return -1
+ * FIXME consider East_Asian_Width Unicode property */
static int utf8_strlen(const char *buf, int buf_len)
{
int len = 0;
@@ -166,7 +167,7 @@ static void findAsciidocTags (void)
if (name_len < 0)
name_len = name_len_bytes;
- /* underlines must be +-2 chars */
+ /* underlines must be +-2 chars FIXME detect single line titles */
if (line_len >= name_len - 2 && line_len <= name_len + 2 && name_len > 0 &&
ispunct(line[0]) && issame((const char*) line))
{
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Lex <elextr(a)gmail.com>
Committer: Lex <elextr(a)gmail.com>
Date: Thu, 17 Jan 2013 04:43:24 UTC
Commit: dcac3e164c804729f49750510c3491205e2ff19d
https://github.com/geany/geany/commit/dcac3e164c804729f49750510c3491205e2ff…
Log Message:
-----------
Fix indent setting
Asciidoc requires single line comments to be at the start of the line
so do not want indent.
Modified Paths:
--------------
data/filetypes.asciidoc
Modified: data/filetypes.asciidoc
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -21,7 +21,7 @@ comment_single=//
# setting to false would generate this
# command_example();
# This setting works only for single line comments
-#comment_use_indent=true
+comment_use_indent=false
# context action command (please see Geany's main documentation for details)
context_action_cmd=
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).