(f90-abbrev-start): Avoid warning.

This commit is contained in:
Richard M. Stallman 2005-07-16 18:42:26 +00:00
parent 434fc2d3ee
commit 2c94857186

View file

@ -1790,7 +1790,8 @@ Any other key combination is executed normally."
(let (char event)
(if (fboundp 'next-command-event) ; XEmacs
(setq event (next-command-event)
char (event-to-character event))
char (and (fboundp 'event-to-character)
(event-to-character event)))
(setq event (read-event)
char event))
;; Insert char if not equal to `?', or if abbrev-mode is off.