summaryrefslogtreecommitdiffstats
path: root/linux
diff options
context:
space:
mode:
authordennis <dennis@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-11-19 23:04:30 +0000
committerdennis <dennis@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-11-19 23:04:30 +0000
commit69f86efd5cd91623f545fc048e54da8e974c149c (patch)
tree3037349cb1a936edd558749d0cd9a34f17d63ce6 /linux
parenta8a7e8d2c940aef18b9f6e93dd51671b7268909e (diff)
Verbesserung von Björn Seifert: Bug bei fehlender Datei mit eigenen Compose-Ergänzungen gefixt.
git-svn-id: https://svn.neo-layout.org@1230 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'linux')
-rwxr-xr-xlinux/bin/neo-compose7
1 files changed, 6 insertions, 1 deletions
diff --git a/linux/bin/neo-compose b/linux/bin/neo-compose
index 2f31bfb..b5e7f33 100755
--- a/linux/bin/neo-compose
+++ b/linux/bin/neo-compose
@@ -40,5 +40,10 @@ elif [ ! "a${NEO_OWN_COMPOSE}" = "a" ]; then
fi
fi
-cat "${NEO_ORIG_COMPOSE}" "${NEO_COMPOSE}" "${NEO_OWN_COMPOSE}" > ~/.XCompose
+if [ ! "a${NEO_OWN_COMPOSE}" = "a" ]; then
+ cat "${NEO_ORIG_COMPOSE}" "${NEO_COMPOSE}" "${NEO_OWN_COMPOSE}" > ~/.XCompose
+else
+ cat "${NEO_ORIG_COMPOSE}" "${NEO_COMPOSE}" > ~/.XCompose
+fi
+