summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-07-12 14:55:10 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-07-12 14:55:10 (EDT)
commitd6b5c8818aa4479d8f22fe07603d9da9feac6d76 (patch)
treeb19f3d7f365c31e5fd9eb9eefe3771969480fa43 /lib
parentfea635fbc9f007fb557558d353429d25f946de64 (diff)
get_msg(): Fix quoting in eval command.
Diffstat (limited to 'lib')
-rw-r--r--lib/locale.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/locale.sh b/lib/locale.sh
index 8baf235..63cbad7 100644
--- a/lib/locale.sh
+++ b/lib/locale.sh
@@ -68,7 +68,7 @@ get_msg()
{
local msgid="${1}"
- eval "printf '%s' \"\${msg_${TEXT_DOMAIN}_${msgid}}"
+ eval "printf '%s' \"\${msg_${TEXT_DOMAIN}_${msgid}}\""
return 0
}