diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-07-05 14:49:56 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-07-05 14:50:02 +0200 |
commit | 82c6327555252a00404c62302dcc9effbf8fb90a (patch) | |
tree | cab63994997b440100f237a49c4dbcb6a44c2fff /lisp | |
parent | 579b0c006e407aef1623f3b42d28b666426406c7 (diff) | |
download | emacs-82c6327555252a00404c62302dcc9effbf8fb90a.tar.gz emacs-82c6327555252a00404c62302dcc9effbf8fb90a.tar.bz2 emacs-82c6327555252a00404c62302dcc9effbf8fb90a.zip |
`image-save' doc string clarification
* lisp/image.el (image-save): Clarify what's being saved
(bug#49347).
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/image.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/image.el b/lisp/image.el index ee152940311..494c26a8a33 100644 --- a/lisp/image.el +++ b/lisp/image.el @@ -1191,7 +1191,9 @@ rotations by only multiples of 90 degrees." 360))))) (defun image-save () - "Save the image under point." + "Save the image under point. +This writes the original image data to a file. Rotating or +changing the displayed image size does not affect the saved image." (interactive) (let ((image (image--get-image))) (with-temp-buffer |