summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2010-05-07 22:57:05 -0400
committerJohn Wiegley <johnw@newartisans.com>2010-05-07 22:57:05 -0400
commitd728e1364a4499d9965c513c92468d2a89882433 (patch)
treed40a5e8f74822deb99e9835646377dafc071425c /lisp
parent7f5c1c81a1918dd3f7293a66b988599a0125b1f9 (diff)
downloadfork-ledger-d728e1364a4499d9965c513c92468d2a89882433.tar.gz
fork-ledger-d728e1364a4499d9965c513c92468d2a89882433.tar.bz2
fork-ledger-d728e1364a4499d9965c513c92468d2a89882433.zip
Make sure ldg-new.el loads correctly
Diffstat (limited to 'lisp')
-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)