aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/libraries/aspell/dictionaries.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/libraries/aspell/dictionaries.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/libraries/aspell/dictionaries.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/libraries/aspell/dictionaries.nix b/infra/libkookie/nixpkgs/pkgs/development/libraries/aspell/dictionaries.nix
index 32405d6a5251..bc2a189a887a 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/libraries/aspell/dictionaries.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/libraries/aspell/dictionaries.nix
@@ -132,15 +132,15 @@ let
# drop comments
aspell-affix() {
words-only \
- | grep -v '#' \
+ | grep -a -v '#' \
| aspell-create "$@"
}
# Hack: drop comments and words with affixes
aspell-plain() {
words-only \
- | grep -v '#' \
- | grep -v '/' \
+ | grep -a -v '#' \
+ | grep -a -v '/' \
| aspell-create "$@"
}