(tumme-write-tag): Remove.
(tumme-write-comment): Remove.
(tumme-display-previous-thumbnail-original): Remove empty line.
+ (tumme-widget-list): Add punctuation.
2006-07-24 mathias <mathias.dahl@gmail.com>
;; USAGE
;; =====
;;
-;; This information has been moved to the manual. Type `C-h r' to open
+;; This information has been moved to the manual. Type `C-h r' to open
;; the Emacs manual and go to the node Thumbnails by typing `g
;; Thumbnails RET'.
;;
;; Can't use (overlays-at (point)), BUG?
(overlays-in (point) (1+ (point)))))
(put-image thumb-file image-pos)
- (setq
+ (setq
overlay
(car (delq nil (mapcar (lambda (o) (and (overlay-get o 'put-image) o))
(overlays-in (point) (1+ (point)))))))
(kill-buffer buffer)))
(defvar tumme-widget-list nil
- "List to keep track of meta data in edit buffer")
+ "List to keep track of meta data in edit buffer.")
;;;###autoload
(defun tumme-dired-edit-comment-and-tags ()
(erase-buffer))
(remove-overlays)
;; Some help for the user.
- (widget-insert
+ (widget-insert
"\nEdit comments and tags for each image. Separate multiple tags
with a comma. Move forward between fields using TAB or RET.
Move to the previous field using backtab (S-TAB). Save by
",") "")))
;; Save information in all widgets so that we can use it when
;; the user saves the form.
- (setq tumme-widget-list
- (append tumme-widget-list
+ (setq tumme-widget-list
+ (append tumme-widget-list
(list (list file comment-widget tag-widget))))
(widget-insert "\n\n")))
;; Footer with Save and Cancel button.
(widget-insert "\n")
(widget-create 'push-button
- :notify
+ :notify
(lambda (&rest ignore)
(tumme-save-information-from-widgets)
(bury-buffer)
"Save")
(widget-insert " ")
(widget-create 'push-button
- :notify
+ :notify
(lambda (&rest ignore)
(bury-buffer)
(message "Operation canceled."))