From: Mathias Dahl Date: Sun, 21 May 2006 14:03:56 +0000 (+0000) Subject: Added information to the add-tags prompt. X-Git-Tag: emacs-pretest-22.0.90~2432 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=193948a0b045d5b261232b30105650ffdd22735e;p=emacs.git Added information to the add-tags prompt. --- diff --git a/lisp/tumme.el b/lisp/tumme.el index 6a53ed16948..8f6e43e9cd6 100644 --- a/lisp/tumme.el +++ b/lisp/tumme.el @@ -976,7 +976,7 @@ displayed." (defun tumme-tag-files (arg) "Tag marked file(s) in dired. With prefix ARG, tag file at point." (interactive "P") - (let ((tag (read-string "Tag to add: ")) + (let ((tag (read-string "Tags to add (separate tags with a semicolon): ")) curr-file files) (if arg (setq files (dired-get-filename)) @@ -986,7 +986,7 @@ displayed." (defun tumme-tag-thumbnail () "Tag current thumbnail." (interactive) - (let ((tag (read-string "Tag to add: "))) + (let ((tag (read-string "Tags to add (separate tags with a semicolon): "))) (tumme-write-tag (tumme-original-file-name) tag)) (tumme-update-property 'tags (tumme-list-tags (tumme-original-file-name))))