summaryrefslogtreecommitdiff
path: root/lisp/ldg-complete.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/ldg-complete.el')
-rw-r--r--lisp/ldg-complete.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ldg-complete.el b/lisp/ldg-complete.el
index 3fd1b319..3686d0fd 100644
--- a/lisp/ldg-complete.el
+++ b/lisp/ldg-complete.el
@@ -164,10 +164,10 @@ Does not use ledger xact"
xacts))
(forward-line))
(setq xacts (nreverse xacts)))))
+ ;; Insert rest-of-name and the postings
(when xacts
(save-excursion
- (insert rest-of-name)
- (insert ?\n)
+ (insert rest-of-name ?\n)
(while xacts
(insert (car xacts) ?\n)
(setq xacts (cdr xacts))))