]> git.eshelyaron.com Git - emacs.git/commitdiff
Added information to the add-tags prompt.
authorMathias Dahl <mathias.dahl@gmail.com>
Sun, 21 May 2006 14:03:56 +0000 (14:03 +0000)
committerMathias Dahl <mathias.dahl@gmail.com>
Sun, 21 May 2006 14:03:56 +0000 (14:03 +0000)
lisp/tumme.el

index 6a53ed16948f6d0cef62cd0a41d9a6d08a63f1ac..8f6e43e9cd617d4aca4cfbab615247ce53608485 100644 (file)
@@ -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))))