diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-11-06 23:54:39 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-11-07 00:00:02 +0100 |
commit | e30442b53b6328a45d91ce9ef8e9d3d29ff2a5a9 (patch) | |
tree | f221471bc6822e0cdd02d479c25dc37b1757e248 /gnu/services/xorg.scm | |
parent | 41d07f5e98ffeb7230bff71a760177cbc5d8f6e7 (diff) | |
download | guix-e30442b53b6328a45d91ce9ef8e9d3d29ff2a5a9.tar guix-e30442b53b6328a45d91ce9ef8e9d3d29ff2a5a9.tar.gz |
services: xorg: Fix typo in xserver.conf.
* gnu/services/xorg.scm (xorg-start-command)[xserver.conf]: Add missing
double-quote in AllowMouseOpenFail.
Diffstat (limited to 'gnu/services/xorg.scm')
-rw-r--r-- | gnu/services/xorg.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/xorg.scm b/gnu/services/xorg.scm index 39eaeee0a4..6be94d5614 100644 --- a/gnu/services/xorg.scm +++ b/gnu/services/xorg.scm @@ -67,7 +67,7 @@ Section \"Files\" EndSection Section \"ServerFlags\" - Option \"AllowMouseOpenFail\" \"on"" + Option \"AllowMouseOpenFail\" \"on\" EndSection ")) |