]> gitweb.factorcode.org Git - factor.git/commitdiff
ctags: Fix character encoding error
authorGiftpflanze <gifti@tools.wmflabs.org>
Sat, 17 Feb 2024 11:23:00 +0000 (12:23 +0100)
committerGiftpflanze <gifti@tools.wmflabs.org>
Sat, 17 Feb 2024 11:23:00 +0000 (12:23 +0100)
.gitignore
extra/ctags/ctags.factor

index 362eba8504f89946fadb7643320e65cc3a4e2b4f..17d19c5a200fb6d4a70e6ec672884f2d423bfd2a 100644 (file)
@@ -36,3 +36,4 @@ factor.image.fresh
 xcuserdata
 bin
 git-id
+tags
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 ;