diff options
| author | David Aspinall | 2002-07-19 01:11:14 +0000 |
|---|---|---|
| committer | David Aspinall | 2002-07-19 01:11:14 +0000 |
| commit | 44e31b7234b8769af2a9c353542e03579b3cbcaa (patch) | |
| tree | 9bde2cdc554a6bf471cc160967108f364e29b750 | |
| parent | a1e8f2592c8e889726047217e5ea36b68b17f93b (diff) | |
Trivially simulate events-to-keys
| -rw-r--r-- | generic/proof-compat.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/generic/proof-compat.el b/generic/proof-compat.el index ac4b74bb..3ce175e3 100644 --- a/generic/proof-compat.el +++ b/generic/proof-compat.el @@ -79,6 +79,10 @@ that use a window system such as X, and false for text-only terminals." (unless (fboundp 'int-to-char) (defalias 'int-to-char 'identity)) (unless (fboundp 'char-to-int) (defalias 'char-to-int 'identity)) +;;; Missing function, but anyway Emacs has no datatype for events... + +(unless (fboundp 'events-to-keys) + (defalias 'events-to-keys 'identity)) ;; completion not autoloaded in GNU 20.6.1; we must call ;; dynamic-completion-mode after loading it. |
