diff options
author | Craig Earls <enderw88@gmail.com> | 2013-02-05 12:33:42 -0700 |
---|---|---|
committer | Craig Earls <enderw88@gmail.com> | 2013-02-05 12:33:42 -0700 |
commit | 4d7c4929395421eb039f0d03afafaf55cffd686d (patch) | |
tree | 733c8c25741bd3777ab2503423dcc86dd8537247 /lisp/ldg-exec.el | |
parent | d67c42207fa75b0b4715705b577a228eec05729a (diff) | |
download | fork-ledger-4d7c4929395421eb039f0d03afafaf55cffd686d.tar.gz fork-ledger-4d7c4929395421eb039f0d03afafaf55cffd686d.tar.bz2 fork-ledger-4d7c4929395421eb039f0d03afafaf55cffd686d.zip |
Lisp code cleanup
Most of the files have been touched several times and the indentation structure
was wrong. I ran all the files through the emacs indent region function to get back to
a baseline
Diffstat (limited to 'lisp/ldg-exec.el')
-rw-r--r-- | lisp/ldg-exec.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ldg-exec.el b/lisp/ldg-exec.el index f13cfa5a..e9cefd20 100644 --- a/lisp/ldg-exec.el +++ b/lisp/ldg-exec.el @@ -68,8 +68,8 @@ (goto-char (point-min)) (delete-horizontal-space) (setq version-strings (split-string - (buffer-substring-no-properties (point) - (+ (point) 12)))) + (buffer-substring-no-properties (point) + (+ (point) 12)))) (if (and (string-match (regexp-quote "Ledger") (car version-strings)) (or (string= needed (car (cdr version-strings))) (string< needed (car (cdr version-strings))))) |