summaryrefslogtreecommitdiff
path: root/modules/org-agenda-config-debug.el
diff options
context:
space:
mode:
Diffstat (limited to 'modules/org-agenda-config-debug.el')
-rw-r--r--modules/org-agenda-config-debug.el14
1 files changed, 1 insertions, 13 deletions
diff --git a/modules/org-agenda-config-debug.el b/modules/org-agenda-config-debug.el
index aded3b6a..a9c713a1 100644
--- a/modules/org-agenda-config-debug.el
+++ b/modules/org-agenda-config-debug.el
@@ -16,19 +16,7 @@
;;; Code:
(require 'user-constants)
-
-;; ---------------------------- Helper Functions -------------------------------
-
-(defun cj/log-silently (format-string &rest args)
- "Append formatted message to *Messages* buffer without echoing.
-FORMAT-STRING and ARGS are passed to `format'.
-This is a local copy of the pattern from system-utils.el."
- (let ((inhibit-read-only t))
- (with-current-buffer (get-buffer-create "*Messages*")
- (goto-char (point-max))
- (unless (bolp) (insert "\n"))
- (insert (apply #'format format-string args))
- (unless (bolp) (insert "\n")))))
+(require 'system-lib)
;; ---------------------------- Debug Functions --------------------------------