If I write `.utf8` suffix - the CPU load is high. If I write any locale (for example ru_RU) without `.utf8` - th CPU load is normal. And output of `-v` differs: 1. `$ LANG=ru_UA.utf8 geany -v` ``` Geany-INFO: Geany 1.28, ru_UA.utf8 Geany-INFO: GTK 2.24.31, GLib 2.50.0 Geany-INFO: System data dir: /usr/share/geany Geany-INFO: User config dir: /home/alexander/.config/geany Geany-INFO: System plugin path: /usr/lib/x86_64-linux-gnu/geany Geany-INFO: Added filetype JSON (61). Geany-INFO: Added filetype Genie (62). Geany-INFO: Added filetype Clojure (63). Geany-INFO: Added filetype CUDA (64). Geany-INFO: Added filetype Cython (65). Geany-INFO: Added filetype Graphviz (66). Geany-INFO: Added filetype Scala (67). Vector smash protection is enabled. Geany-INFO: Loaded: /usr/lib/x86_64-linux-gnu/geany/markdown.so (Markdown) Geany-INFO: Loaded: /usr/lib/x86_64-linux-gnu/geany/treebrowser.so (Дерево файлов) Geany-INFO: Loaded: /usr/lib/x86_64-linux-gnu/geany/addons.so (Дополнения) Geany-INFO: Loaded: /usr/lib/x86_64-linux-gnu/geany/export.so (Экспорт) Geany-INFO: unknown : None (UTF-8) openjdk version "1.8.0_102" OpenJDK Runtime Environment (build 1.8.0_102-8u102-b14.1-2-b14) OpenJDK 64-Bit Server VM (build 25.102-b14, mixed mode) Geany-INFO: Quitting... Geany-INFO: Unloaded: /usr/lib/x86_64-linux-gnu/geany/markdown.so Geany-INFO: Unloaded: /usr/lib/x86_64-linux-gnu/geany/treebrowser.so Geany-INFO: Unloaded: /usr/lib/x86_64-linux-gnu/geany/addons.so Geany-INFO: Unloaded: /usr/lib/x86_64-linux-gnu/geany/export.so ``` 2. `$ LANG=ru_UA geany -v` ``` Geany-INFO: Geany 1.28, ru_UA Geany-INFO: GTK 2.24.31, GLib 2.50.0 Geany-INFO: System data dir: /usr/share/geany Geany-INFO: User config dir: /home/alexander/.config/geany Geany-INFO: System plugin path: /usr/lib/x86_64-linux-gnu/geany Geany-INFO: Added filetype JSON (61). Geany-INFO: Added filetype Genie (62). Geany-INFO: Added filetype Clojure (63). Geany-INFO: Added filetype CUDA (64). Geany-INFO: Added filetype Cython (65). Geany-INFO: Added filetype Graphviz (66). Geany-INFO: Added filetype Scala (67). Vector smash protection is enabled. Geany-INFO: Loaded: /usr/lib/x86_64-linux-gnu/geany/markdown.so (Markdown) Geany-INFO: Loaded: /usr/lib/x86_64-linux-gnu/geany/treebrowser.so (������ ������) Geany-INFO: Loaded: /usr/lib/x86_64-linux-gnu/geany/addons.so (����������) Geany-INFO: Loaded: /usr/lib/x86_64-linux-gnu/geany/export.so (�������) openjdk version "1.8.0_102" OpenJDK Runtime Environment (build 1.8.0_102-8u102-b14.1-2-b14) OpenJDK 64-Bit Server VM (build 25.102-b14, mixed mode) Geany-INFO: unknown : None (UTF-8) Geany-INFO: Quitting... Geany-INFO: Unloaded: /usr/lib/x86_64-linux-gnu/geany/markdown.so Geany-INFO: Unloaded: /usr/lib/x86_64-linux-gnu/geany/treebrowser.so Geany-INFO: Unloaded: /usr/lib/x86_64-linux-gnu/geany/addons.so Geany-INFO: Unloaded: /usr/lib/x86_64-linux-gnu/geany/export.so ``` As you can see - there's broken encoding in the brackets after names of `/usr/lib/x86_64-linux-gnu/geany/*.so`.
Also I tried german locale: `de_DE` and `de_DE.utf8` - there's no broken encoding in `-v` output because german symbols are latin. But the CPU load is still high with `.utf8` suffix even with german language. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/1252#issuecomment-251332574
