aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2009-05-09 06:27:24 +0000
committerUlrich Müller <ulm@gentoo.org>2009-05-09 06:27:24 +0000
commit392f059b51b938e6d1e6383f9e48b4003c33db30 (patch)
treed0b541b50a67c44bcf8c9033891d49ab713c0024
parentDisplay an error message if the return status of read_item was bad. (diff)
downloadeselect-392f059b51b938e6d1e6383f9e48b4003c33db30.tar.gz
eselect-392f059b51b938e6d1e6383f9e48b4003c33db30.tar.bz2
eselect-392f059b51b938e6d1e6383f9e48b4003c33db30.zip
Local variables for Emacs.
svn path=/trunk/; revision=529
-rw-r--r--libs/config.bash.in5
-rw-r--r--libs/core.bash.in5
-rw-r--r--libs/default.eselect.in5
-rw-r--r--libs/editor-variable.bash.in5
-rw-r--r--libs/manip.bash.in5
-rw-r--r--libs/multilib.bash.in5
-rw-r--r--libs/output.bash.in5
-rw-r--r--libs/package-manager.bash.in5
-rw-r--r--libs/paludis.bash.in5
-rw-r--r--libs/path-manipulation.bash.in5
-rw-r--r--libs/portage.bash.in5
-rw-r--r--libs/skel.bash.in5
-rw-r--r--libs/tests.bash.in5
13 files changed, 65 insertions, 0 deletions
diff --git a/libs/config.bash.in b/libs/config.bash.in
index 96e68da..200a9f5 100644
--- a/libs/config.bash.in
+++ b/libs/config.bash.in
@@ -120,4 +120,9 @@ append_config() {
fi
}
+# Local Variables:
+# sh-indentation: 4
+# indent-tabs-mode: nil
+# End:
+
# vim: set sw=4 et sts=4 tw=80 :
diff --git a/libs/core.bash.in b/libs/core.bash.in
index 7a84122..ed35695 100644
--- a/libs/core.bash.in
+++ b/libs/core.bash.in
@@ -114,4 +114,9 @@ sed() {
@SED@ "$@"
}
+# Local Variables:
+# sh-indentation: 4
+# indent-tabs-mode: nil
+# End:
+
# vim: set sw=4 et sts=4 tw=80 :
diff --git a/libs/default.eselect.in b/libs/default.eselect.in
index 0419f49..c86f034 100644
--- a/libs/default.eselect.in
+++ b/libs/default.eselect.in
@@ -105,4 +105,9 @@ do_help() {
true
}
+# Local Variables:
+# sh-indentation: 4
+# indent-tabs-mode: nil
+# End:
+
# vim: set sw=4 et sts=4 tw=80 :
diff --git a/libs/editor-variable.bash.in b/libs/editor-variable.bash.in
index 231b16b..81c5c84 100644
--- a/libs/editor-variable.bash.in
+++ b/libs/editor-variable.bash.in
@@ -167,3 +167,8 @@ do_update() {
do_action env update noldconfig
}
+
+# Local Variables:
+# sh-indentation: 4
+# indent-tabs-mode: nil
+# End:
diff --git a/libs/manip.bash.in b/libs/manip.bash.in
index 597d979..d28ae45 100644
--- a/libs/manip.bash.in
+++ b/libs/manip.bash.in
@@ -28,4 +28,9 @@ svn_date_to_version() {
echo "${s}"
}
+# Local Variables:
+# sh-indentation: 4
+# indent-tabs-mode: nil
+# End:
+
# vim: set sw=4 et sts=4 tw=80 :
diff --git a/libs/multilib.bash.in b/libs/multilib.bash.in
index 9bce486..894706a 100644
--- a/libs/multilib.bash.in
+++ b/libs/multilib.bash.in
@@ -36,4 +36,9 @@ list_libdirs() {
echo "${libdirs[@]}"
}
+# Local Variables:
+# sh-indentation: 4
+# indent-tabs-mode: nil
+# End:
+
# vim: set sw=4 et sts=4 tw=80 :
diff --git a/libs/output.bash.in b/libs/output.bash.in
index b381696..54bf578 100644
--- a/libs/output.bash.in
+++ b/libs/output.bash.in
@@ -226,4 +226,9 @@ space() {
echo -n "${ret}"
}
+# Local Variables:
+# sh-indentation: 4
+# indent-tabs-mode: nil
+# End:
+
# vim: set sw=4 et sts=4 tw=80 :
diff --git a/libs/package-manager.bash.in b/libs/package-manager.bash.in
index 5abf318..ff3b7b7 100644
--- a/libs/package-manager.bash.in
+++ b/libs/package-manager.bash.in
@@ -145,4 +145,9 @@ package-manager() {
echo "${ESELECT_PACKAGE_MANAGER:-@PACKAGE_MANAGER@}"
}
+# Local Variables:
+# sh-indentation: 4
+# indent-tabs-mode: nil
+# End:
+
# vim: set sw=4 et sts=4 tw=80 :
diff --git a/libs/paludis.bash.in b/libs/paludis.bash.in
index aee80e5..034f4bf 100644
--- a/libs/paludis.bash.in
+++ b/libs/paludis.bash.in
@@ -38,4 +38,9 @@ paludis_has-version() {
$(paludis_command) --has-version $* 2> /dev/null
}
+# Local Variables:
+# sh-indentation: 4
+# indent-tabs-mode: nil
+# End:
+
# vim: set sw=4 et sts=4 tw=80 :
diff --git a/libs/path-manipulation.bash.in b/libs/path-manipulation.bash.in
index 2e6df0d..25ee0c3 100644
--- a/libs/path-manipulation.bash.in
+++ b/libs/path-manipulation.bash.in
@@ -30,4 +30,9 @@ canonicalise() {
@CANONICALISE@ "$@"
}
+# Local Variables:
+# sh-indentation: 4
+# indent-tabs-mode: nil
+# End:
+
# vim: set sw=4 et sts=4 tw=80 :
diff --git a/libs/portage.bash.in b/libs/portage.bash.in
index 2453657..1c8840a 100644
--- a/libs/portage.bash.in
+++ b/libs/portage.bash.in
@@ -49,4 +49,9 @@ portageq() {
# done
# }
+# Local Variables:
+# sh-indentation: 4
+# indent-tabs-mode: nil
+# End:
+
# vim: set sw=4 et sts=4 tw=80 :
diff --git a/libs/skel.bash.in b/libs/skel.bash.in
index 567dfe3..8b953ec 100644
--- a/libs/skel.bash.in
+++ b/libs/skel.bash.in
@@ -307,4 +307,9 @@ do_add() {
fi
}
+# Local Variables:
+# sh-indentation: 4
+# indent-tabs-mode: nil
+# End:
+
# vim: set sw=4 et sts=4 tw=80 :
diff --git a/libs/tests.bash.in b/libs/tests.bash.in
index f8f72b7..e7d5d20 100644
--- a/libs/tests.bash.in
+++ b/libs/tests.bash.in
@@ -39,4 +39,9 @@ is_number() {
[[ -n ${1} ]] && [[ -z ${1//[[:digit:]]} ]]
}
+# Local Variables:
+# sh-indentation: 4
+# indent-tabs-mode: nil
+# End:
+
# vim: set sw=4 et sts=4 tw=80 :