summaryrefslogtreecommitdiff
path: root/lisp/thumbs.el
diff options
context:
space:
mode:
authorJohn Paul Wallington <jpw@pobox.com>2004-04-28 16:56:08 +0000
committerJohn Paul Wallington <jpw@pobox.com>2004-04-28 16:56:08 +0000
commit2652a3891be56c81e51684f9722222aa4838e0ef (patch)
tree8b5e84d50e10fab9aad436a501db85f69692dee9 /lisp/thumbs.el
parentf5a9228af0dc91a6c7a93e4684ec35d76069f4ca (diff)
downloademacs-2652a3891be56c81e51684f9722222aa4838e0ef.tar.gz
(thumbs-delete-images): Fix formatting of prompt.
(thumbs-show-image-num): Move assignment of `thumbs-current-image-filename' within dynamic scope of `i'. (thumbs-emboss-image): Don't use `evenp'.
Diffstat (limited to 'lisp/thumbs.el')
-rw-r--r--lisp/thumbs.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/thumbs.el b/lisp/thumbs.el
index 8bba647a2ad..9458f0351ab 100644
--- a/lisp/thumbs.el
+++ b/lisp/thumbs.el
@@ -504,7 +504,7 @@ Open another window."
"Delete the image at point (and it's thumbnail) (or marked files if any)."
(interactive)
(let ((f (or thumbs-markedL (list (cdr (assoc (point) thumbs-fileL))))))
- (if (yes-or-no-p "Really delete %d files?" (length f))
+ (if (yes-or-no-p (format "Really delete %d files? " (length f)))
(progn
(mapcar (lambda (x)
(setq thumbs-fileL (delete (rassoc x thumbs-fileL) thumbs-fileL))
@@ -529,9 +529,9 @@ Open another window."
(rename-buffer (concat "*Image: "
(file-name-nondirectory i)
" - "
- (number-to-string num) "*")))
- (setq thumbs-image-num num
- thumbs-current-image-filename i)))
+ (number-to-string num) "*"))
+ (setq thumbs-image-num num
+ thumbs-current-image-filename i))))
(defun thumbs-next-image ()
"Show next image."
@@ -597,7 +597,7 @@ ACTION and ARG should be legal convert command."
(defun thumbs-emboss-image (emboss)
"Emboss the image with value EMBOSS."
(interactive "nEmboss value: ")
- (if (or (< emboss 3)(> emboss 31)(evenp emboss))
+ (if (or (< emboss 3) (> emboss 31) (zerop (logand emboss 1)))
(error "Arg must be a odd number between 3 and 31"))
(thumbs-modify-image "emboss" (number-to-string emboss)))