* lisp/image-mode.el (image-mode-map): Inherit from
`image-map' so that the usual image commands work.
*** Images inserted with `insert-image' and related functions get a
keymap put into the text properties (or overlays) that span the
image. This keymap binds keystrokes for manipulating size and
-rotation, as well as saving the image to a file.
+rotation, as well as saving the image to a file. These commands are
+also available in `image-mode'.
+++
*** A new library for creating and manipulating SVG images has been
(defvar image-mode-map
(let ((map (make-sparse-keymap)))
(set-keymap-parent map special-mode-map)
+ (set-keymap-parent map image-map)
(define-key map "\C-c\C-c" 'image-toggle-display)
(define-key map (kbd "SPC") 'image-scroll-up)
(define-key map (kbd "S-SPC") 'image-scroll-down)