* lisp/image-mode.el (image-display-size):
* lisp/xwidget.el (xwidget-webkit-last-session)
(xwidget-webkit-current-session): Don't hard-code 1 as point-min.
contains `image' but not `slice', return the `image-size' of the specified
image."
(cond ((eq (car spec) 'xwidget)
- (let ((xwi (xwidget-info (xwidget-at 1)))) ; FIXME point-min?
+ (let ((xwi (xwidget-info (xwidget-at (point-min)))))
(cons (aref xwi 2) (aref xwi 3))))
((eq (car spec) 'image)
(image-size spec pixels frame))
"Last active webkit, or nil."
(if (buffer-live-p xwidget-webkit-last-session-buffer)
(with-current-buffer xwidget-webkit-last-session-buffer
- (xwidget-at 1))
+ (xwidget-at (point-min)))
nil))
(defun xwidget-webkit-current-session ()
"Either the webkit in the current buffer, or the last one used.
The latter might be nil."
- (if (xwidget-at 1)
- (xwidget-at 1)
- (xwidget-webkit-last-session)))
+ (or (xwidget-at (point-min)) (xwidget-webkit-last-session)))
(defun xwidget-adjust-size-to-content (xw)
"Resize XW to content."