diff options
author | John Wiegley <johnw@newartisans.com> | 2010-05-07 22:57:05 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-05-07 22:57:05 -0400 |
commit | d728e1364a4499d9965c513c92468d2a89882433 (patch) | |
tree | d40a5e8f74822deb99e9835646377dafc071425c /lisp | |
parent | 7f5c1c81a1918dd3f7293a66b988599a0125b1f9 (diff) | |
download | fork-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.el | 1 | ||||
-rw-r--r-- | lisp/ldg-mode.el | 1 | ||||
-rw-r--r-- | lisp/ldg-new.el | 9 |
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) |