diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2023-08-13 12:52:42 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2023-08-13 12:52:54 +0200 |
commit | eea0116e868d782508540b5dbc07e39b64e808f6 (patch) | |
tree | 760e0e6342b23cce26103e94c76a861597b1cb62 | |
parent | c51d1bce1ea5d97219dff22bc278644cb7495297 (diff) | |
download | emacs-eea0116e868d782508540b5dbc07e39b64e808f6.tar.gz emacs-eea0116e868d782508540b5dbc07e39b64e808f6.tar.bz2 emacs-eea0116e868d782508540b5dbc07e39b64e808f6.zip |
Delete XEmacs compat code from supercite.el
* lisp/mail/supercite.el (sc-ask): Delete compatibility code;
'button-release-event-p' is only defined in XEmacs.
-rw-r--r-- | lisp/mail/supercite.el | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lisp/mail/supercite.el b/lisp/mail/supercite.el index 1a48c64a663..8d9cb5511ed 100644 --- a/lisp/mail/supercite.el +++ b/lisp/mail/supercite.el @@ -620,9 +620,6 @@ the list should be unique." ((setq elt (rassq char alist)) (message "%s%s" p (car elt)) (setq p (cdr elt))) - ((if (fboundp 'button-release-event-p) - (button-release-event-p event)) ; ignore them - nil) (t (message "%s%s" p (single-key-description event)) (ding) |