1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-09 11:13:12 +02:00

spell: rename "aspell" plugin to "spell" (issue #1299)

The following things have been renamed:

- file aspell.conf -> spell.conf
- options aspell.* -> spell.*
- bar item aspell_dict -> spell_dict
- bar item and local variable aspell_suggest -> spell_suggest
- info aspell_dict -> spell_dict
This commit is contained in:
Sébastien Helleu
2019-01-27 14:59:22 +01:00
parent e8159298ad
commit 57aa9e060e
96 changed files with 2070 additions and 2011 deletions
+22 -22
View File
@@ -49,28 +49,6 @@ if(ENABLE_ALIAS)
add_subdirectory(alias)
endif()
if(ENABLE_ASPELL)
if(ENABLE_ENCHANT)
# Check for enchant libraries
find_package(ENCHANT)
if(ENCHANT_FOUND)
add_subdirectory(aspell)
else()
# Check for aspell libraries
find_package(Aspell)
if(ASPELL_FOUND)
add_subdirectory(aspell)
endif()
endif()
else()
# Check for aspell libraries
find_package(Aspell)
if(ASPELL_FOUND)
add_subdirectory(aspell)
endif()
endif()
endif()
if(ENABLE_BUFLIST)
add_subdirectory(buflist)
endif()
@@ -166,6 +144,28 @@ if(ENABLE_SCRIPTS AND ENABLE_PHP)
endif()
endif()
if(ENABLE_SPELL)
if(ENABLE_ENCHANT)
# Check for enchant libraries
find_package(ENCHANT)
if(ENCHANT_FOUND)
add_subdirectory(spell)
else()
# Check for aspell libraries
find_package(Aspell)
if(ASPELL_FOUND)
add_subdirectory(spell)
endif()
endif()
else()
# Check for aspell libraries
find_package(Aspell)
if(ASPELL_FOUND)
add_subdirectory(spell)
endif()
endif()
endif()
if(ENABLE_TRIGGER)
add_subdirectory(trigger)
endif()