aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib
diff options
context:
space:
mode:
authorGravatar Pierre Courtieu <courtieu@lri.fr>2005-03-01 17:43:27 +0000
committerGravatar Pierre Courtieu <courtieu@lri.fr>2005-03-01 17:43:27 +0000
commit720e512212c76f3954413626ec379a02ae32c408 (patch)
tree75b41a9b6a1e5e1ee7092ce3d23571be9fa58952 /lib
parentf00449171cb20f25af52295e92c5789be631c41f (diff)
debugging of holes.el.
Diffstat (limited to 'lib')
-rw-r--r--lib/holes.el5
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))
)
)