quilt-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Quilt-dev] [PATCH 3/4] quilt.el: Load /etc/quilt.quiltrc if ~/.quiltrc


From: Ondřej Lysoněk
Subject: [Quilt-dev] [PATCH 3/4] quilt.el: Load /etc/quilt.quiltrc if ~/.quiltrc doesn't exist
Date: Thu, 14 May 2020 21:59:52 +0200

quilt loads /etc/quilt.quiltrc if ~/.quiltrc doesn't exist. Do the
same in quilt.el.

Signed-off-by: Ondřej Lysoněk <address@hidden>
---
 lib/quilt.el | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/lib/quilt.el b/lib/quilt.el
index 66fb41a..a872aab 100644
--- a/lib/quilt.el
+++ b/lib/quilt.el
@@ -33,7 +33,11 @@
   "Return the value of a configuration variable. Return nil if it is unset."
   (or (with-current-buffer (generate-new-buffer " *cmd")
         (shell-command
-         (concat "test -f ~/.quiltrc && . ~/.quiltrc ;"
+         (concat "if [ -f ~/.quiltrc ]; then"
+                "  . ~/.quiltrc ;"
+                "elif [ -f /etc/quilt.quiltrc ]; then"
+                "  . /etc/quilt.quiltrc ;"
+                "fi ;"
                  "echo -n $" var)
          t)
         (unwind-protect
-- 
2.25.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]