summaryrefslogtreecommitdiff
path: root/editors/xemacs-devel-mule/files/patch-cmdloop.el
diff options
context:
space:
mode:
authorAndrey Slusar <anray@FreeBSD.org>2006-03-16 08:15:32 +0000
committerAndrey Slusar <anray@FreeBSD.org>2006-03-16 08:15:32 +0000
commit94c5b748fad40cb66e0c7b6f600c5bc1ac30ebff (patch)
tree2556922d60a252781bc97def17ced435d871390f /editors/xemacs-devel-mule/files/patch-cmdloop.el
parentAdd fixrtf, an utility that is intended for use with the (diff)
- Update to 21.5-b25 "eggplant".
- Fix build with gtk support. - Disable experimental features and add this features to WITH_EXPERIMENTAL option(it's improve perfomance and stability in default build).
Notes
Notes: svn path=/head/; revision=157388
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)))