From e2f00abe26c530a380ef687e50d91e07c6ba57c4 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Wed, 6 Jul 2011 04:01:14 +1000 Subject: pacman-key: fix syntax highlighting The lone quotation mark in "pacman's" causes issues for some syntax highlighting. Change the printing of the nessage from echo to printf so we can invisibly escape it. Signed-off-by: Allan McRae Signed-off-by: Dan McGee --- scripts/pacman-key.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/pacman-key.sh.in') diff --git a/scripts/pacman-key.sh.in b/scripts/pacman-key.sh.in index 877cca29..833943cb 100644 --- a/scripts/pacman-key.sh.in +++ b/scripts/pacman-key.sh.in @@ -33,7 +33,7 @@ usage() { echo printf "$(gettext "Usage: %s [options] [arguments]")\n" $(basename $0) echo - echo "$(gettext "Manage pacman's list of trusted keys")" + printf "$(gettext "Manage pacman\'s list of trusted keys")\n" echo echo "$(gettext "Options must be placed before commands. The available options are:")" printf "$(gettext " --config Use an alternate config file (instead of '%s')")\n" "$CONFIG" -- cgit v1.2.3-24-g4f1b