]> code.delx.au - gnu-emacs/commitdiff
* image-mode.el: Move defvars earlier to avoid a byte-compilation warning.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Thu, 18 Sep 2014 18:38:05 +0000 (20:38 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Thu, 18 Sep 2014 18:38:05 +0000 (20:38 +0200)
lisp/ChangeLog
lisp/image-mode.el

index 0a92a7ed4b94954d563c406b6cbb9ba6600c6c0f..709627ceed31335004e6e1d10830b6fc66a6b4ed 100644 (file)
@@ -4,6 +4,8 @@
        `fit-width' or a `fit-height', don't limit the size of the image
        to the window size, because that doesn't preserve the aspect
        ratio.
+       * image-mode.el: Move defvars earlier to avoid a byte-compilation
+       warning.
 
 2014-09-17  Reuben Thomas  <rrt@sc3d.org>
 
index ee5a1e7906e7b215276a8a0665e797b04785429f..b94162d413a2d1d27baa4e69028b27337fc6ee59 100644 (file)
   "Special hook run when image data is requested in a new window.
 It is called with one argument, the initial WINPROPS.")
 
+;; FIXME this doesn't seem mature yet. Document in manual when it is.
+(defvar image-transform-resize nil
+  "The image resize operation.
+Its value should be one of the following:
+ - nil, meaning no resizing.
+ - `fit-height', meaning to fit the image to the window height.
+ - `fit-width', meaning to fit the image to the window width.
+ - A number, which is a scale factor (the default size is 1).")
+
+(defvar image-transform-scale 1.0
+  "The scale factor of the image being displayed.")
+
+(defvar image-transform-rotation 0.0
+  "Rotation angle for the image in the current Image mode buffer.")
+
+(defvar image-transform-right-angle-fudge 0.0001
+  "Snap distance to a multiple of a right angle.
+There's no deep theory behind the default value, it should just
+be somewhat larger than ImageMagick's MagickEpsilon.")
+
 (defun image-mode-winprops (&optional window cleanup)
   "Return winprops of WINDOW.
 A winprops object has the shape (WINDOW . ALIST).
@@ -905,26 +925,6 @@ replacing the current Image mode buffer."
 ;;   nil "image-transform" image-transform-minor-mode-map)
 
 
-;; FIXME this doesn't seem mature yet. Document in manual when it is.
-(defvar image-transform-resize nil
-  "The image resize operation.
-Its value should be one of the following:
- - nil, meaning no resizing.
- - `fit-height', meaning to fit the image to the window height.
- - `fit-width', meaning to fit the image to the window width.
- - A number, which is a scale factor (the default size is 1).")
-
-(defvar image-transform-scale 1.0
-  "The scale factor of the image being displayed.")
-
-(defvar image-transform-rotation 0.0
-  "Rotation angle for the image in the current Image mode buffer.")
-
-(defvar image-transform-right-angle-fudge 0.0001
-  "Snap distance to a multiple of a right angle.
-There's no deep theory behind the default value, it should just
-be somewhat larger than ImageMagick's MagickEpsilon.")
-
 (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."