aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristophe Deleuze2020-01-22 17:05:03 +0100
committerLars Ingebrigtsen2020-01-22 17:05:13 +0100
commit4f2b96779521bb8311bcd2de06a07efcfb60038f (patch)
tree96ce269fcc403cbaca7c08410b66d8dce805b62e
parent3b0938c0420de2b845e7e8f8fbbb57ddc61718f2 (diff)
downloademacs-4f2b96779521bb8311bcd2de06a07efcfb60038f.tar.gz
emacs-4f2b96779521bb8311bcd2de06a07efcfb60038f.zip
Fix doc strings for image-dired rotation commands
* lisp/image-dired.el (image-dired-rotate-thumbnail-left) (image-dired-rotate-thumbnail-right) (image-dired-rotate-original-left) (image-dired-rotate-original-right): Move the text in the doc strings about rotating the originals to the correct commands (bug#38928).
-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