Add TODO.
[matthijs/master-project/report.git] / pret-lam.lua
index c05f987bd71747b26b23c7a31b8775e4d8db1974..5769a312d94af372d5f319e8300c4550a8cbe3a1 100644 (file)
@@ -62,7 +62,9 @@ end
 -- Take a single word from str, if posible. Returns the rest of the string and
 -- the word taken.
 function buffers.visualizers.lam.take_word(str)
-        res, newstr = utf.match(str, "^(%a[%a%d_]+)(.*)")
+        -- A word must always start with a-z (in particular, λ is not a valid
+        -- start of a word).
+        res, newstr = utf.match(str, "^([a-zA-Z][%a%d_]+)(.*)")
         return res, newstr or str
 end