[gedit-latex] Quadruplicate backslashes to go through double escaping



commit 882001d8983f42e5c164a3905d0adacbe8daf110
Author: Pietro Battiston <me pietrobattiston it>
Date:   Wed Jun 6 17:01:51 2012 +0200

    Quadruplicate backslashes to go through double escaping

 latex/latex/dialogs.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/latex/latex/dialogs.py b/latex/latex/dialogs.py
index 1949d37..f9f98c6 100644
--- a/latex/latex/dialogs.py
+++ b/latex/latex/dialogs.py
@@ -919,7 +919,7 @@ class InsertTableDialog(GladeInterface):
             colList = []
             for j in range(cols):
                 colList.append("${%s%s}" % (i + 1, j + 1))
-            s += "\n" + indent + " & ".join(colList) + " \\\\"
+            s += "\n" + indent + " & ".join(colList) + " \\\\\\\\"
         return s
 
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]