Revision: 520 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=520&view=rev Author: frlan Date: 2009-03-02 14:02:26 +0000 (Mon, 02 Mar 2009)
Log Message: ----------- GeanyLaTeX: fix a typo in close of environment
Modified Paths: -------------- trunk/geanylatex/src/latexenvironments.c
Modified: trunk/geanylatex/src/latexenvironments.c =================================================================== --- trunk/geanylatex/src/latexenvironments.c 2009-02-28 14:15:08 UTC (rev 519) +++ trunk/geanylatex/src/latexenvironments.c 2009-03-02 14:02:26 UTC (rev 520) @@ -55,7 +55,7 @@ gint len = strlen(environment); gchar *tmp = NULL;
- tmp = g_strconcat("\begin{", environment, "}\n\n\end(", + tmp = g_strconcat("\begin{", environment, "}\n\n\end{", environment, "}\n", NULL);
sci_insert_text(doc->editor->sci, pos, tmp);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
plugins-commits@lists.geany.org