From f8260fce2e423e8ba71d3d0637c3ba359fd8116f Mon Sep 17 00:00:00 2001 From: Tanaka Akira Date: Fri, 18 Feb 2000 10:11:05 +0000 Subject: zsh-workers/9790 --- Completion/X/_x_borderwidth | 6 ++++-- Completion/X/_x_geometry | 6 ++++-- Completion/X/_x_locale | 6 ++++-- Completion/X/_x_name | 6 ++++-- Completion/X/_x_resource | 6 ++++-- Completion/X/_x_selection_timeout | 6 ++++-- Completion/X/_x_title | 6 ++++-- 7 files changed, 28 insertions(+), 14 deletions(-) (limited to 'Completion/X') diff --git a/Completion/X/_x_borderwidth b/Completion/X/_x_borderwidth index 1864e8a77..c2f0eec83 100644 --- a/Completion/X/_x_borderwidth +++ b/Completion/X/_x_borderwidth @@ -1,7 +1,9 @@ #autoload -if (( $# )); then - _message "$2" +local x="$argv[(I)-X]" + +if (( x )); then + _message -r "$argv[x + 1]" else _message 'border width' fi diff --git a/Completion/X/_x_geometry b/Completion/X/_x_geometry index 5584cb75f..a15dd16d9 100644 --- a/Completion/X/_x_geometry +++ b/Completion/X/_x_geometry @@ -1,7 +1,9 @@ #autoload -if (( $# )); then - _message "$2" +local x="$argv[(I)-X]" + +if (( x )); then + _message -r "$argv[x + 1]" else _message 'geometry' fi diff --git a/Completion/X/_x_locale b/Completion/X/_x_locale index 62415f857..2321b1a5b 100644 --- a/Completion/X/_x_locale +++ b/Completion/X/_x_locale @@ -1,7 +1,9 @@ #autoload -if (( $# )); then - _message "$2" +local x="$argv[(I)-X]" + +if (( x )); then + _message -r "$argv[x + 1]" else _message 'locale' fi diff --git a/Completion/X/_x_name b/Completion/X/_x_name index 692e56736..38d4c26d3 100644 --- a/Completion/X/_x_name +++ b/Completion/X/_x_name @@ -1,7 +1,9 @@ #autoload -if (( $# )); then - _message "$2" +local x="$argv[(I)-X]" + +if (( x )); then + _message -r "$argv[x + 1]" else _message 'name' fi diff --git a/Completion/X/_x_resource b/Completion/X/_x_resource index f46eef15c..a0b8e0f21 100644 --- a/Completion/X/_x_resource +++ b/Completion/X/_x_resource @@ -1,7 +1,9 @@ #autoload -if (( $# )); then - _message "$2" +local x="$argv[(I)-X]" + +if (( x )); then + _message -r "$argv[x + 1]" else _message 'resource' fi diff --git a/Completion/X/_x_selection_timeout b/Completion/X/_x_selection_timeout index 5481cd7fe..d6dfd8a13 100644 --- a/Completion/X/_x_selection_timeout +++ b/Completion/X/_x_selection_timeout @@ -1,7 +1,9 @@ #autoload -if (( $# )); then - _message "$2" +local x="$argv[(I)-X]" + +if (( x )); then + _message -r "$argv[x + 1]" else _message 'selection timeout' fi diff --git a/Completion/X/_x_title b/Completion/X/_x_title index c892702b1..fe2ab7b9f 100644 --- a/Completion/X/_x_title +++ b/Completion/X/_x_title @@ -1,7 +1,9 @@ #autoload -if (( $# )); then - _message "$2" +local x="$argv[(I)-X]" + +if (( x )); then + _message -r "$argv[x + 1]" else _message 'title' fi -- cgit 1.4.1