changeset 1427:a076e89a2879

remove literal
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 24 Nov 2019 18:23:57 -0700
parents 94a6a209d4e2
children d21a7cf8fa9e
files src/luan/modules/String.luan src/luan/modules/lucene/Lucene.luan
diffstat 2 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/luan/modules/String.luan	Sun Nov 24 16:38:06 2019 -0700
+++ b/src/luan/modules/String.luan	Sun Nov 24 18:23:57 2019 -0700
@@ -14,7 +14,6 @@
 String.match = StringLuan.match
 String.matches = StringLuan.matches
 String.regex_quote = Pattern.quote
-String.literal = String.regex_quote  -- tmp
 String.rep = StringLuan.rep
 String.reverse = StringLuan.reverse
 String.split = StringLuan.split
--- a/src/luan/modules/lucene/Lucene.luan	Sun Nov 24 16:38:06 2019 -0700
+++ b/src/luan/modules/lucene/Lucene.luan	Sun Nov 24 18:23:57 2019 -0700
@@ -29,7 +29,6 @@
 }
 
 Lucene.quote = SaneQueryParser.quote
-Lucene.literal = Lucene.quote  -- tmp
 
 function Lucene.index(index_dir,options)
 	type(index_dir)=="table" or error "index_dir must be table"