summary history branches tags files
commit:1565b2b6715cb4bad99fc9ba29ea6e802ee7422a
author:Trevor Bentley
committer:Trevor Bentley
date:Thu Dec 3 00:44:55 2020 +0100
parents:a3ea6bdc4cc45f28566536daf7644c5d47147418
remove the example values from defcustoms
diff --git a/snitch-custom.el b/snitch-custom.el
line changes: +3/-5
index 3d3b0ed..25d313e
--- a/snitch-custom.el
+++ b/snitch-custom.el
@@ -138,9 +138,7 @@ snitch-network-whitelist."
 
 ;;;###autoload
 (defcustom snitch-network-whitelist
-  '(
-    (snitch-filter/src-pkg . (user))
-    )
+  '()
   ""
   :group 'snitch-rules
   :type '(alist :key-type function
@@ -150,7 +148,7 @@ snitch-network-whitelist."
 (defcustom snitch-process-blacklist
   '(
     ;; Example: block processes from elfeed
-    (snitch-filter/src-pkg . (elfeed))
+    ;;(snitch-filter/src-pkg . (elfeed))
 
     ;; Example: block processes from system packages
     ;;(snitch-filter/src-pkg . (site-lisp))
@@ -159,7 +157,7 @@ snitch-network-whitelist."
     ;;(snitch-filter/src-pkg . (built-in))
 
     ;; Example: block processes from an unknown user package
-    (snitch-filter/src-pkg . (user))
+    ;;(snitch-filter/src-pkg . (user))
     )
   ""
   :group 'snitch-rules