(log-view-get-marked): Likewise.
2007-08-26 Dan Nicolaescu <dann@ics.uci.edu>
+ * log-view.el (log-view-toggle-mark-entry): Add docstring.
+ (log-view-get-marked): Likewise.
+
* vc-hooks.el (vc-registered): Use mapc instead of mapcar.
(vc-delete-automatic-version-backups): Likewise.
rev))))))
(defun log-view-toggle-mark-entry ()
+ "Toggle the marked state for the log entry at point.
+Individual log entries can be marked and unmarked. The marked
+entries are denoted by changing their background color.
+`log-view-get-marked' returns the list of tags for the marked
+log entries."
(interactive)
(save-excursion
(forward-line 1)
(overlay-put ov 'log-view-marked tag))))))))
(defun log-view-get-marked ()
+ "Return the list of tags for the marked log entries."
(save-excursion
(let ((pos (point-min))
marked-list ov)