diff options
| author | Karl Heuer | 1996-05-30 17:12:48 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-05-30 17:12:48 +0000 |
| commit | 310c9f40fd5828fdbbe33c775809fab3e8779106 (patch) | |
| tree | 6da408a1a469bf7619f45a1da001396d33679bb3 /lisp | |
| parent | efcf38c7c2c336fdc89a55ac0ce29086d767700d (diff) | |
| download | emacs-310c9f40fd5828fdbbe33c775809fab3e8779106.tar.gz emacs-310c9f40fd5828fdbbe33c775809fab3e8779106.zip | |
(event-point): Fix fboundp test surrounding this.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/custom.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/custom.el b/lisp/custom.el index e9657538ecf..d6fe0cbaa8b 100644 --- a/lisp/custom.el +++ b/lisp/custom.el | |||
| @@ -182,7 +182,7 @@ STRING should be given if the last search was by `string-match' on STRING." | |||
| 182 | (setq props (nthcdr 2 props))) | 182 | (setq props (nthcdr 2 props))) |
| 183 | (remove-text-properties start end ()))))) | 183 | (remove-text-properties start end ()))))) |
| 184 | 184 | ||
| 185 | (or (fboundp 'event-closest-point) | 185 | (or (fboundp 'event-point) |
| 186 | ;; Missing in Emacs 19.29. | 186 | ;; Missing in Emacs 19.29. |
| 187 | (defun event-point (event) | 187 | (defun event-point (event) |
| 188 | "Return the character position of the given mouse-motion, button-press, | 188 | "Return the character position of the given mouse-motion, button-press, |