summary history branches tags files
commit:de40962c386cc1322839b7094893c45131df4cc1
author:Trevor Bentley
committer:Trevor Bentley
date:Fri Dec 11 01:00:33 2020 +0100
parents:fb1d9ed12d5ec4282d22da0d7811e3dbe7caf133
add missing intra-project requires
diff --git a/snitch-backtrace.el b/snitch-backtrace.el
line changes: +1/-0
index 0906428..f80f532
--- a/snitch-backtrace.el
+++ b/snitch-backtrace.el
@@ -40,6 +40,7 @@
 (require 'package) ; backtrace package sources
 (require 'backtrace)
 
+(require 'snitch-custom)
 (require 'snitch-timer)
 
 ;; Since the backtrace functions might be called extremely often,

diff --git a/snitch-log.el b/snitch-log.el
line changes: +2/-0
index e8ce83d..10aeae1
--- a/snitch-log.el
+++ b/snitch-log.el
@@ -36,6 +36,8 @@
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;
 ;;; Code:
+(require 'snitch-custom)
+(require 'snitch-filter)
 
 ;; optional dependency on alert package
 (defvar snitch--have-alert (require 'alert nil t))

diff --git a/snitch-test.el b/snitch-test.el
line changes: +1/-1
index 15659c3..c485c52
--- a/snitch-test.el
+++ b/snitch-test.el
@@ -51,7 +51,7 @@
 (require 'ert)
 (require 'snitch)
 (require 'use-package)
-
+(require 'snitch-custom)
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;

diff --git a/snitch-timer.el b/snitch-timer.el
line changes: +2/-1
index bf4a676..51e35c4
--- a/snitch-timer.el
+++ b/snitch-timer.el
@@ -40,6 +40,8 @@
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;
 ;;; Code:
+(require 'snitch-backtrace)
+(require 'snitch-custom)
 
 (defvar snitch--timer-alist '()
   "Cache of Emacs timers tracked by snitch.
@@ -204,7 +206,6 @@ modification and returns the result.
 Always calls the original function ORIG-FN is called with its
 arguments ARGS unmodified."
   (let* ((bt (snitch--backtrace))
-         ;;(bt '()) ;;(snitch--backtrace))
          (timer (nth 0 args))
          (idle (nth 3 args))
          (expire-time (snitch--timer-timeout timer))