diff options
author | Philipp Gesang <pgesang@ix.urz.uni-heidelberg.de> | 2011-08-28 12:26:44 +0200 |
---|---|---|
committer | Philipp Gesang <pgesang@ix.urz.uni-heidelberg.de> | 2011-08-28 12:26:44 +0200 |
commit | a7b6795708c093c5ce5f32fab79516feabd83171 (patch) | |
tree | 79c2932125845bb0531a68ed5edea866ced1634f | |
parent | 4d80cd680742e182b6d67798018ca8fcf8a15629 (diff) | |
download | context-rst-a7b6795708c093c5ce5f32fab79516feabd83171.tar.gz |
fixed file loading
-rw-r--r-- | mod/tex/context/third/rst/rst_parser.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/tex/context/third/rst/rst_parser.lua b/mod/tex/context/third/rst/rst_parser.lua index 4289941..045d322 100644 --- a/mod/tex/context/third/rst/rst_parser.lua +++ b/mod/tex/context/third/rst/rst_parser.lua @@ -1383,7 +1383,7 @@ do function file_helpers.expandtab (raw) position = 1 - p_expand:match(raw) + return p_expand:match(raw) end end |