diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2022-08-18 17:29:53 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2022-08-18 19:22:48 +0200 |
commit | 0b43ed4dbca0b6472ab2ec91c22dd809dfd42801 (patch) | |
tree | ea2f0be6676bc6d098c96bbf3bf1a73b8a8506eb /lisp | |
parent | f97668c38fe4b503d14200baa4fe9627c2cbcb1b (diff) | |
download | emacs-0b43ed4dbca0b6472ab2ec91c22dd809dfd42801.tar.gz emacs-0b43ed4dbca0b6472ab2ec91c22dd809dfd42801.tar.bz2 emacs-0b43ed4dbca0b6472ab2ec91c22dd809dfd42801.zip |
; * lisp/image-mode.el: Delete commented out image-transform-mode.
This mode was added in 2010 but never implemented. It was
subsequently commented out in 2012.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/image-mode.el | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lisp/image-mode.el b/lisp/image-mode.el index 76c076818f8..a923db5b5f4 100644 --- a/lisp/image-mode.el +++ b/lisp/image-mode.el @@ -1384,26 +1384,6 @@ If no such buffer exists, it will be opened." (image-toggle-display)))) -;; Not yet implemented. -;; (defvar image-transform-minor-mode-map -;; (let ((map (make-sparse-keymap))) -;; ;; (define-key map [(control ?+)] 'image-scale-in) -;; ;; (define-key map [(control ?-)] 'image-scale-out) -;; ;; (define-key map [(control ?=)] 'image-scale-none) -;; ;; (define-key map "c f h" 'image-scale-fit-height) -;; ;; (define-key map "c ]" 'image-rotate-right) -;; map) -;; "Minor mode keymap `image-transform-mode'.") -;; -;; (define-minor-mode image-transform-mode -;; "Minor mode for scaling and rotating images. -;; With a prefix argument ARG, enable the mode if ARG is positive, -;; and disable it otherwise. If called from Lisp, enable the mode -;; if ARG is omitted or nil. This minor mode requires Emacs to have -;; been compiled with ImageMagick support." -;; nil "image-transform" image-transform-minor-mode-map) - - (defsubst image-transform-width (width height) "Return the bounding box width of a rotated WIDTH x HEIGHT rectangle. The rotation angle is the value of `image-transform-rotation' in degrees." |