branch: externals/bufferlo
commit f43e5c709768464ac268415b6e7612af81c6fe83
Author: shipmints <[email protected]>
Commit: shipmints <[email protected]>
New saved session produces a summary message
"Saved session bookmark X containing bm1 bm2 bm3..."
---
bufferlo.el | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/bufferlo.el b/bufferlo.el
index 04c38be1e3..60eb6ea8af 100644
--- a/bufferlo.el
+++ b/bufferlo.el
@@ -2609,7 +2609,10 @@ message."
(bookmark-store bookmark-name
(bufferlo--bookmark-set-location
(bufferlo--bookmark-session-make
active-bookmark-names tabsets frameset))
- no-overwrite)))))
+ no-overwrite)
+ (message "Saved session bookmark %s containing %s"
+ bookmark-name
+ (mapconcat #'identity active-bookmark-names " "))))))
(defun bufferlo-session-save-interactive (bookmark-name &optional no-overwrite)
"Save a bufferlo session bookmark for the specified active bookmarks.