diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-05-20 17:17:39 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-05-20 17:17:39 +0000 |
commit | 1654c9f082636d58defa1e2de685faca9795e93b (patch) | |
tree | 0977f98e6dd581b705a1eb7423ed0416721bef63 /lisp/emacs-lisp | |
parent | 939c9c52f1c7fea783a3371f1af8bf99785bf17b (diff) | |
download | emacs-1654c9f082636d58defa1e2de685faca9795e93b.tar.gz emacs-1654c9f082636d58defa1e2de685faca9795e93b.tar.bz2 emacs-1654c9f082636d58defa1e2de685faca9795e93b.zip |
(event-closest-point): Fix paren error.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/levents.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/levents.el b/lisp/emacs-lisp/levents.el index ed12511f322..f62e37607dd 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))))) |