aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/configure.fish
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2007-01-16 11:18:28 +1000
committerGravatar axel <axel@liljencrantz.se>2007-01-16 11:18:28 +1000
commit34e27ff4c216e2d379afba19fed2761a684697d8 (patch)
treea1429d6c9796caf54c3f4d440e740a88e3aa76aa /share/completions/configure.fish
parent47588c8e75f56f6065a4eb6d4e3bccbad4fab14e (diff)
Drop use of the N_ no-op for translation descriptions. Instead, tell xgettext that any token following '--description' should be translated. This should greatly speed up completion loading on platforms where fork() is slow. (Hi, OS X)
darcs-hash:20070116011828-ac50b-fb923dc877869ded4d506bbe0bc5364eea44092f.gz
Diffstat (limited to 'share/completions/configure.fish')
-rw-r--r--share/completions/configure.fish24
1 files changed, 12 insertions, 12 deletions
diff --git a/share/completions/configure.fish b/share/completions/configure.fish
index c05fee3a..7c7d849c 100644
--- a/share/completions/configure.fish
+++ b/share/completions/configure.fish
@@ -1,12 +1,12 @@
-complete -c configure -s h -l help -x -a "short recursive" -d (N_ "Display help and exit")
-complete -c configure -s V -l version -d (N_ "Display version and exit")
-complete -c configure -s q -l quiet -d (N_ "Quiet mode")
-complete -c configure -l cache-file -f -d (N_ "Cache test results in specified file")
-complete -c configure -s C -l config-cache -d (N_ "Cache test results in file config.cache")
-complete -c configure -s n -l no-create -d (N_ "Do not create output files")
-complete -c configure -l srcdir -d (N_ "Set source directory") -a "__fish_complete_directories (commandline -ct)" -x
-complete -c configure -l prefix -d (N_ "Architecture-independent install directory") -a "__fish_complete_directories (commandline -ct)" -x
-complete -c configure -l exec-prefix -d (N_ "Architecture-dependent install directory") -a "__fish_complete_directories (commandline -ct)" -x
-complete -c configure -l build -d (N_ "Configure for building on BUILD") -x
-complete -c configure -l host -d (N_ "Cross-compile to build programs to run on HOST") -x
-complete -c configure -l target -d (N_ "Configure for building compilers for TARGET") -x -u
+complete -c configure -s h -l help -x -a "short recursive" --description "Display help and exit"
+complete -c configure -s V -l version --description "Display version and exit"
+complete -c configure -s q -l quiet --description "Quiet mode"
+complete -c configure -l cache-file -f --description "Cache test results in specified file"
+complete -c configure -s C -l config-cache --description "Cache test results in file config.cache"
+complete -c configure -s n -l no-create --description "Do not create output files"
+complete -c configure -l srcdir --description "Set source directory" -a "__fish_complete_directories (commandline -ct)" -x
+complete -c configure -l prefix --description "Architecture-independent install directory" -a "__fish_complete_directories (commandline -ct)" -x
+complete -c configure -l exec-prefix --description "Architecture-dependent install directory" -a "__fish_complete_directories (commandline -ct)" -x
+complete -c configure -l build --description "Configure for building on BUILD" -x
+complete -c configure -l host --description "Cross-compile to build programs to run on HOST" -x
+complete -c configure -l target --description "Configure for building compilers for TARGET" -x -u