[geany/geany-plugins] 472d1d: TableConvert: Remove not needed line split character
Frank Lanitz
git-noreply at xxxxx
Sun Oct 5 12:52:35 UTC 2014
Branch: refs/heads/master
Author: Frank Lanitz <frank at frank.uvena.de>
Committer: Frank Lanitz <frank at frank.uvena.de>
Date: Sun, 05 Oct 2014 12:52:35 UTC
Commit: 472d1d8374356785657d0df8310c95d04bee3919
https://github.com/geany/geany-plugins/commit/472d1d8374356785657d0df8310c95d04bee3919
Log Message:
-----------
TableConvert: Remove not needed line split character
Modified Paths:
--------------
tableconvert/src/tableconvert.c
Modified: tableconvert/src/tableconvert.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -196,7 +196,7 @@ static void convert_to_table(gboolean header)
g_free(selection);
selection = g_string_free(selection_str, FALSE);
- rows = g_strsplit_set(selection, "\r\n", -1);
+ rows = g_strsplit_set(selection, "\n", -1);
g_free(selection);
/* Checking whether we do have something we can work on - Returning if not */
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Plugins-Commits
mailing list