diff options
author | Craig Earls <enderw88@gmail.com> | 2014-12-01 20:18:11 -0700 |
---|---|---|
committer | Craig Earls <enderw88@gmail.com> | 2014-12-01 20:18:11 -0700 |
commit | c844170aed4caad47b7607b6284b8b6a35d54908 (patch) | |
tree | 2f0e8063117e5b648e7519a6dd069cb4b2161844 /lisp/ledger-post.el | |
parent | 66d2e4fecd50354cb32bac61038a6c3fc7becaf3 (diff) | |
download | ledger-c844170aed4caad47b7607b6284b8b6a35d54908.tar.gz ledger-c844170aed4caad47b7607b6284b8b6a35d54908.tar.bz2 ledger-c844170aed4caad47b7607b6284b8b6a35d54908.zip |
Doc string cleanup.
Diffstat (limited to 'lisp/ledger-post.el')
-rw-r--r-- | lisp/ledger-post.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/ledger-post.el b/lisp/ledger-post.el index f0b7b8c1..11cd5847 100644 --- a/lisp/ledger-post.el +++ b/lisp/ledger-post.el @@ -42,7 +42,7 @@ :group 'ledger-post) (defcustom ledger-post-use-completion-engine :built-in - "Which completion engine to use, :iswitchb or :ido chose those engines, + "Which completion engine to use, :iswitchb or :ido chose those engines. :built-in uses built-in Ledger-mode completion" :type '(radio (const :tag "built in completion" :built-in) (const :tag "ido completion" :ido) @@ -83,7 +83,7 @@ point at beginning of the commodity." (match-end 3)) (point))))) (defun ledger-next-account (&optional end) - "Move point to the beginning of the next account, or status marker (!*), as long as it is not past END. + "Move to the beginning of the posting, or status marker, limit to END. Return the column of the beginning of the account and leave point at beginning of account" (if (> end (point)) @@ -95,13 +95,13 @@ at beginning of account" (current-column)))) (defun ledger-post-align-xact (pos) - (interactive "d") + "Align all the posting in the xact at POS." + (interactive "d") (let ((bounds (ledger-navigate-find-xact-extents pos))) (ledger-post-align-postings (car bounds) (cadr bounds)))) (defun ledger-post-align-postings (&optional beg end) - "Align all accounts and amounts within region, if there is no -region align the posting on the current line." + "Align all accounts and amounts between BEG and END, or the current line." (interactive) (save-excursion |