diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2013-02-15 16:09:49 -0600 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2013-02-15 16:09:49 -0600 |
commit | 86dbd757e94fe5402efea03f9f8725a71533297a (patch) | |
tree | 42ad4e1d1b50735dd0bd504d405e6d38d7be22a4 | |
parent | 970893adf3a2f0f7330c4839a716566de14171a3 (diff) |
keymaps: fix the use of loadkeys in the euro fix
The loadkeys man page states that if you don't pass a filename loadkeys
will read from stdin. However, this is not correct, so we now pass "-"
as the filename to explicitly request stdin.
Reported-by: andi@grois.info
X-Gentoo-Bug: 457524
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=457524
-rw-r--r-- | init.d/keymaps.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d/keymaps.in b/init.d/keymaps.in index a55a0e06..58892682 100644 --- a/init.d/keymaps.in +++ b/init.d/keymaps.in @@ -58,7 +58,7 @@ start() if yesno $fix_euro; then ebegin "Fixing font for euro symbol" # Fix some fonts displaying the Euro, #173528. - echo "altgr keycode 18 = U+20AC" | loadkeys -q + echo "altgr keycode 18 = U+20AC" | loadkeys -q - eend $? fi |