|
@@ -889,7 +889,9 @@ I.e. to the text after the last item."
|
|
(catch 'next
|
|
(catch 'next
|
|
(beginning-of-line 2)
|
|
(beginning-of-line 2)
|
|
(if (looking-at "[ \t]*$")
|
|
(if (looking-at "[ \t]*$")
|
|
- (throw (if (eobp) 'exit 'next) t))
|
|
|
|
|
|
+ (if (eobp)
|
|
|
|
+ (progn (setq pos (point)) (throw 'exit t))
|
|
|
|
+ (throw 'next t)))
|
|
(skip-chars-forward " \t") (setq ind1 (current-column))
|
|
(skip-chars-forward " \t") (setq ind1 (current-column))
|
|
(if (or (< ind1 ind)
|
|
(if (or (< ind1 ind)
|
|
(and (= ind1 ind)
|
|
(and (= ind1 ind)
|