branch: externals/auto-overlays
commit 19de2f7fe4d15b96d59d742af22bf34762e41c47
Author: Toby Cubitt <[email protected]>
Commit: tsc25 <[email protected]>
Version 0.8 of the predictive completion package.
---
auto-overlays.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/auto-overlays.el b/auto-overlays.el
index 1c8ef10..7f5a0ad 100644
--- a/auto-overlays.el
+++ b/auto-overlays.el
@@ -141,12 +141,12 @@ appropriate identifier."
(let ((lines (count-lines (point-min) (point-max)))
(set (1- (length auto-overlay-regexps))))
(goto-char (point-min))
- (message "Scanning for auto-overlays (line 1 of %d)..."
+ (message "Scanning for auto-overlays...(line 1 of %d)"
lines)
(dotimes (i lines)
(when (= 9 (mod i 10))
(message
- "Scanning for auto-overlays (line %d of %d)..."
+ "Scanning for auto-overlays...(line %d of %d)"
(+ i 1) lines))
(auto-overlay-update nil nil nil set)
(forward-line 1))