diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-08-27 22:01:22 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-08-28 09:56:33 +0200 |
commit | 06b8eae3d101b9c1f237de34f21091e085390e11 (patch) | |
tree | ecd17df6b31e1d26dd9b214ce02a03a0a9e44562 /gnu | |
parent | 0a80981178ccf37a48474018929a8f338fb1cf4e (diff) | |
download | patches-06b8eae3d101b9c1f237de34f21091e085390e11.tar patches-06b8eae3d101b9c1f237de34f21091e085390e11.tar.gz |
marionette: Augment the set of keystrokes.
* gnu/build/marionette.scm (%qwerty-us-keystrokes): Add ', ", and `.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/build/marionette.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/build/marionette.scm b/gnu/build/marionette.scm index d93525abb8..f35f0fbca1 100644 --- a/gnu/build/marionette.scm +++ b/gnu/build/marionette.scm @@ -261,6 +261,9 @@ PREDICATE, whichever comes first. Raise an error when TIMEOUT is exceeded." (#\. . "dot") (#\, . "comma") (#\; . "semicolon") + (#\' . "apostrophe") + (#\" . "shift-apostrophe") + (#\` . "grave_accent") (#\bs . "backspace") (#\tab . "tab"))) |