]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/ctags/ctags.factor
ctags: Fix character encoding error
[factor.git] / extra / ctags / ctags.factor
index dd43c705124a484f6f5fafd46fcde04ad11fba25..b298813a77768280c11fc52604ae8d12bd4f7750 100644 (file)
@@ -4,7 +4,7 @@
 ! Simple Ctags generator
 ! Alfredo Beaumont <alfredo.beaumont@gmail.com>
 
-USING: assocs definitions io.backend io.encodings.ascii io.files
+USING: assocs definitions io.backend io.encodings.utf8 io.files
 kernel make math.parser present sequences sorting vocabs ;
 IN: ctags
 
@@ -29,4 +29,4 @@ PRIVATE>
     all-words locations sort-keys make-ctags ;
 
 : write-ctags ( path -- )
-    [ ctags ] dip ascii set-file-lines ;
+    [ ctags ] dip utf8 set-file-lines ;