# HG changeset patch # User Dave Love # Date 1035816361 0 # Node ID 27eed9fab7f50bbe7bd14ba8e878c2241511c17e # Parent b048cce71f643ac233e723d29a4a5943a1aa4b37 Fix typo in loop setting x-keysym-table. diff -r b048cce71f64 -r 27eed9fab7f5 lisp/term/x-win.el --- a/lisp/term/x-win.el Sun Oct 27 21:29:08 2002 +0000 +++ b/lisp/term/x-win.el Mon Oct 28 14:46:01 2002 +0000 @@ -1128,6 +1128,9 @@ (put 'return 'ascii-character 13) (put 'escape 'ascii-character ?\e) + +;;;; Keysyms + (defun vendor-specific-keysyms (vendor) "Return the appropriate value of system-key-alist for VENDOR. VENDOR is a string containing the name of the X Server's vendor, @@ -1191,13 +1194,11 @@ ;; This is used by DEC's X server. '((65280 . remove))))) - -;;;; Keysyms - +;; Latin-1 (let ((i 160)) (while (< i 256) (puthash i i x-keysym-table) - (setq i (1- i)))) + (setq i (1+ i)))) ;; Table from Kuhn's proposed additions to the `KEYSYM Encoding' ;; appendix to the X protocol definition.