(f90-abbrev-start): Avoid warning.
This commit is contained in:
parent
434fc2d3ee
commit
2c94857186
1 changed files with 2 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue