diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/holes.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/holes.el b/lib/holes.el index 590c8cc1..b8c5dc03 100644 --- a/lib/holes.el +++ b/lib/holes.el @@ -850,9 +850,10 @@ Must be called when the point is at end of last abbrev expansion." (let ((n (holes-count-newlines-in-last-expand))) (save-excursion (previous-line n) - (while (>= n 0) - (funcall indent-line-function) + (funcall indent-line-function) + (while (> n 0) (next-line 1) + (funcall indent-line-function) (setq n (- n 1)) ) ) |
