]> git.lyx.org Git - lyx.git/blobdiff - lib/lyx2lyx/parser_tools.py
Fix up revert_longtable_align routine. Also, fix a couple thinkos in an
[lyx.git] / lib / lyx2lyx / parser_tools.py
index 7a6d56e09848b54f4ea5ecedb956f3764fb0b2f2..9b63e00fd1f30b1424edee359e61e4fa87563bd9 100644 (file)
@@ -160,7 +160,8 @@ def get_value_string(lines, token, start, end = 0, trim = False, default = ""):
     """ get_value_string(lines, token, start[[, end], trim, default]) -> string
 
     Return tokens after token as string, in lines, where
-    token is the first element."""
+    token is the first element. When trim is used, the first and last character
+    of the string is trimmed."""
 
     i = find_token_exact(lines, token, start, end)
     if i == -1: