SHA256
1
0
forked from pool/anthy
OBS User unknown
2006-12-19 17:37:48 +00:00
committed by Git OBS Bridge
commit f4f0ca947c
10 changed files with 444 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
diff -ru anthy-6024.orig/src-util/anthy.el anthy-6024/src-util/anthy.el
--- anthy-6024.orig/src-util/anthy.el 2004-08-31 18:20:12.000000000 +0200
+++ anthy-6024/src-util/anthy.el 2005-01-18 15:48:34.755323462 +0100
@@ -863,9 +863,9 @@
(if anthy-xemacs
(let ((event last-command-event))
(cond
- ((event-matches-key-specifier-p event 'left) 2)
- ((event-matches-key-specifier-p event 'right) 6)
- ((event-matches-key-specifier-p event 'backspace) 8)
+ ((equal event (character-to-event 'left)) 2)
+ ((equal event (character-to-event 'right)) 6)
+ ((equal event (character-to-event 'backspace)) 8)
(t
(char-to-int (event-to-character event)))))
last-command-char))