summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/ldg-complete.el1
-rw-r--r--lisp/ldg-mode.el1
-rw-r--r--lisp/ldg-new.el9
3 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ldg-complete.el b/lisp/ldg-complete.el
index cc2ac152..33a734b3 100644
--- a/lisp/ldg-complete.el
+++ b/lisp/ldg-complete.el
@@ -153,3 +153,4 @@
(if (re-search-backward "\\(\t\\| [ \t]\\)" nil t)
(goto-char (match-end 0))))))
+(provide 'ldg-complete)
diff --git a/lisp/ldg-mode.el b/lisp/ldg-mode.el
index c6f15eed..973b891c 100644
--- a/lisp/ldg-mode.el
+++ b/lisp/ldg-mode.el
@@ -114,3 +114,4 @@ Return the difference in the format of a time value."
(let ((bounds (ledger-current-entry-bounds)))
(delete-region (car bounds) (cdr bounds))))
+(provide 'ldg-mode)
diff --git a/lisp/ldg-new.el b/lisp/ldg-new.el
index a515d94f..84863c95 100644
--- a/lisp/ldg-new.el
+++ b/lisp/ldg-new.el
@@ -33,10 +33,13 @@
;;; Commentary:
(require 'ldg-post)
+(require 'ldg-mode)
+(require 'ldg-complete)
+(require 'ldg-state)
-(autoload #'ledger-mode "ldg-mode" nil t)
-
-(autoload #'ledger-fully-complete-entry "ldg-complete" nil t)
+;(autoload #'ledger-mode "ldg-mode" nil t)
+;(autoload #'ledger-fully-complete-entry "ldg-complete" nil t)
+;(autoload #'ledger-toggle-current "ldg-state" nil t)
(autoload #'ledger-texi-update-test "ldg-texi" nil t)
(autoload #'ledger-texi-update-examples "ldg-texi" nil t)