aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2022-12-03 22:09:16 +0200
committerEli Zaretskii2022-12-03 22:09:16 +0200
commit2c4d92d30f65860604e4a240edbc109198cfb767 (patch)
tree8d0a0eb7f86348324b0594fda75b7adcbe6ccdff
parent6fb9a03cbdf9e497a78374c6c7cf3222e8e215dd (diff)
downloademacs-2c4d92d30f65860604e4a240edbc109198cfb767.tar.gz
emacs-2c4d92d30f65860604e4a240edbc109198cfb767.zip
; * lisp/subr.el (posn-col-row): Revert inadvertent change.
-rw-r--r--lisp/subr.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index dc219a49a74..21f43092d42 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1729,7 +1729,7 @@ and `event-end' functions."
1729 ((eq area 'horizontal-scroll-bar) 1729 ((eq area 'horizontal-scroll-bar)
1730 (cons (scroll-bar-scale pair (window-width window)) 0)) 1730 (cons (scroll-bar-scale pair (window-width window)) 0))
1731 (t 1731 (t
1732 (if (and (windowp frame-or-window) use-window) 1732 (if use-window
1733 (cons (/ (car pair) (window-font-width window)) 1733 (cons (/ (car pair) (window-font-width window))
1734 (/ (cdr pair) (window-font-height window))) 1734 (/ (cdr pair) (window-font-height window)))
1735 ;; FIXME: This should take line-spacing properties on 1735 ;; FIXME: This should take line-spacing properties on