aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1997-05-20 17:17:39 +0000
committerRichard M. Stallman <[email protected]>1997-05-20 17:17:39 +0000
commit1654c9f082636d58defa1e2de685faca9795e93b (patch)
tree0977f98e6dd581b705a1eb7423ed0416721bef63 /lisp/emacs-lisp
parent939c9c52f1c7fea783a3371f1af8bf99785bf17b (diff)
(event-closest-point): Fix paren error.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/levents.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/levents.el b/lisp/emacs-lisp/levents.el
index ed12511f32..f62e37607d 100644
--- a/lisp/emacs-lisp/levents.el
+++ b/lisp/emacs-lisp/levents.el
@@ -192,7 +192,7 @@ or for window WINDOW if that is specified."
(if (windowp end-w)
(nth 1 (window-edges end-w))
(/ (cdr (posn-x-y (event-end event)))
- ((frame-char-height end-w)))))
+ (frame-char-height end-w))))
(if (>= end-w-top w-top)
(event-closest-point-1 start-window)
(window-start start-window)))))