diff options
| author | Richard M. Stallman | 1997-05-20 17:17:39 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-05-20 17:17:39 +0000 |
| commit | 1654c9f082636d58defa1e2de685faca9795e93b (patch) | |
| tree | 0977f98e6dd581b705a1eb7423ed0416721bef63 /lisp | |
| parent | 939c9c52f1c7fea783a3371f1af8bf99785bf17b (diff) | |
| download | emacs-1654c9f082636d58defa1e2de685faca9795e93b.tar.gz emacs-1654c9f082636d58defa1e2de685faca9795e93b.zip | |
(event-closest-point): Fix paren error.
Diffstat (limited to '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." | |||
| 192 | (if (windowp end-w) | 192 | (if (windowp end-w) |
| 193 | (nth 1 (window-edges end-w)) | 193 | (nth 1 (window-edges end-w)) |
| 194 | (/ (cdr (posn-x-y (event-end event))) | 194 | (/ (cdr (posn-x-y (event-end event))) |
| 195 | ((frame-char-height end-w))))) | 195 | (frame-char-height end-w)))) |
| 196 | (if (>= end-w-top w-top) | 196 | (if (>= end-w-top w-top) |
| 197 | (event-closest-point-1 start-window) | 197 | (event-closest-point-1 start-window) |
| 198 | (window-start start-window))))) | 198 | (window-start start-window))))) |