branch: externals/auto-overlays
commit 6c24aa339e75641e4b8eb208c6cf0584c9a1d3bd
Author: Toby Cubitt <[email protected]>
Commit: tsc25 <[email protected]>
Fixed minor bug in auto-overlay-save-overlays.
---
auto-overlays.el | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/auto-overlays.el b/auto-overlays.el
index 0c17245..985b63b 100644
--- a/auto-overlays.el
+++ b/auto-overlays.el
@@ -5,7 +5,7 @@
;; Copyright (C) 2005 2006 Toby Cubitt
;; Author: Toby Cubitt <[email protected]>
-;; Version: 0.6
+;; Version: 0.6.1
;; Keywords: automatic, overlays
;; URL: http://www.dr-qubit.org/emacs.php
@@ -30,6 +30,9 @@
;;; Change Log:
;;
+;; Version 0.6.1
+;; * fixed minor bug in `auto-overlay-save-overlays'
+;;
;; Version 0.6
;; * rationalised terminology: type -> entry, sequence -> subentry/rank
;; * got rid of mostly useless `auto-overlay-list'
@@ -556,7 +559,7 @@ They can be loaded again later using
`auto-overlay-load-overlays'."
overlay-list)
;; write md5 digest to first line
(prin1 (md5 (current-buffer)) buff)
- (terpri)
+ (terpri buff)
;; get sorted list of all match overlays in set SET-ID
(setq overlay-list
@@ -604,7 +607,7 @@ SET-ID.
The FILE should be generated by `auto-overlay-save-overlays'."
- ;; construct filenameif none specified
+ ;; construct filename if none specified
(unless file (setq file (auto-o-overlay-filename set-id)))
;; check FILE exists
(if (not (file-exists-p file))