summaryrefslogtreecommitdiff
path: root/editors/xemacs-devel-mule/files/patch-cmdloop.el
diff options
context:
space:
mode:
Diffstat (limited to 'editors/xemacs-devel-mule/files/patch-cmdloop.el')
-rw-r--r--editors/xemacs-devel-mule/files/patch-cmdloop.el28
1 files changed, 0 insertions, 28 deletions
diff --git a/editors/xemacs-devel-mule/files/patch-cmdloop.el b/editors/xemacs-devel-mule/files/patch-cmdloop.el
deleted file mode 100644
index f14ddb4627f4..000000000000
--- a/editors/xemacs-devel-mule/files/patch-cmdloop.el
+++ /dev/null
@@ -1,28 +0,0 @@
-Index: cmdloop.el
-===================================================================
-RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/cmdloop.el,v
-retrieving revision 1.18
-retrieving revision 1.19
-diff -u -r1.18 -r1.19
---- lisp/cmdloop.el 2005/06/26 18:04:49 1.18
-+++ lisp/cmdloop.el 2006/01/08 20:00:43 1.19
-@@ -579,7 +579,8 @@
- (setq char (aref translated 0)))))
- (cond ((null char))
- ((not (characterp char))
-- (setq unread-command-events (list char)
-+ ;; XEmacs change; event instead of char.
-+ (setq unread-command-events (list event)
- done t))
- ; ((/= (logand char ?\M-\^@) 0)
- ; ;; Turn a meta-character into a character with the 0200 bit set.
-@@ -598,7 +599,8 @@
- ((and (not first) (eq char ?\C-m))
- (setq done t))
- ((not first)
-- (setq unread-command-events (list char)
-+ ;; XEmacs change; event instead of char.
-+ (setq unread-command-events (list event)
- done t))
- (t (setq code (char-to-int char)
- done t)))