aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/image-dired.el24
1 files changed, 12 insertions, 12 deletions
diff --git a/lisp/image-dired.el b/lisp/image-dired.el
index 7774b82d514..768e941490d 100644
--- a/lisp/image-dired.el
+++ b/lisp/image-dired.el
@@ -1980,20 +1980,12 @@ With prefix argument ARG, display image in its original size."
1980 (clear-image-cache thumb)))) 1980 (clear-image-cache thumb))))
1981 1981
1982(defun image-dired-rotate-thumbnail-left () 1982(defun image-dired-rotate-thumbnail-left ()
1983 "Rotate thumbnail left (counter clockwise) 90 degrees. 1983 "Rotate thumbnail left (counter clockwise) 90 degrees."
1984The result of the rotation is displayed in the image display area
1985and a confirmation is needed before the original image files is
1986overwritten. This confirmation can be turned off using
1987`image-dired-rotate-original-ask-before-overwrite'."
1988 (interactive) 1984 (interactive)
1989 (image-dired-rotate-thumbnail "270")) 1985 (image-dired-rotate-thumbnail "270"))
1990 1986
1991(defun image-dired-rotate-thumbnail-right () 1987(defun image-dired-rotate-thumbnail-right ()
1992 "Rotate thumbnail counter right (clockwise) 90 degrees. 1988 "Rotate thumbnail counter right (clockwise) 90 degrees."
1993The result of the rotation is displayed in the image display area
1994and a confirmation is needed before the original image files is
1995overwritten. This confirmation can be turned off using
1996`image-dired-rotate-original-ask-before-overwrite'."
1997 (interactive) 1989 (interactive)
1998 (image-dired-rotate-thumbnail "90")) 1990 (image-dired-rotate-thumbnail "90"))
1999 1991
@@ -2035,12 +2027,20 @@ overwritten. This confirmation can be turned off using
2035 (image-dired-display-image file)))))) 2027 (image-dired-display-image file))))))
2036 2028
2037(defun image-dired-rotate-original-left () 2029(defun image-dired-rotate-original-left ()
2038 "Rotate original image left (counter clockwise) 90 degrees." 2030 "Rotate original image left (counter clockwise) 90 degrees.
2031The result of the rotation is displayed in the image display area
2032and a confirmation is needed before the original image files is
2033overwritten. This confirmation can be turned off using
2034`image-dired-rotate-original-ask-before-overwrite'."
2039 (interactive) 2035 (interactive)
2040 (image-dired-rotate-original "270")) 2036 (image-dired-rotate-original "270"))
2041 2037
2042(defun image-dired-rotate-original-right () 2038(defun image-dired-rotate-original-right ()
2043 "Rotate original image right (clockwise) 90 degrees." 2039 "Rotate original image right (clockwise) 90 degrees.
2040The result of the rotation is displayed in the image display area
2041and a confirmation is needed before the original image files is
2042overwritten. This confirmation can be turned off using
2043`image-dired-rotate-original-ask-before-overwrite'."
2044 (interactive) 2044 (interactive)
2045 (image-dired-rotate-original "90")) 2045 (image-dired-rotate-original "90"))
2046 2046