Mercurial > emacs
comparison lisp/term/x-win.el @ 5537:899159133053
(vendor-key-syms): Add more HP keysyms and some Sun.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 09 Jan 1994 16:38:16 +0000 |
parents | 920b55d2057b |
children | 19618ce9a103 |
comparison
equal
deleted
inserted
replaced
5536:f900f7bba4c2 | 5537:899159133053 |
---|---|
496 (put 'linefeed 'ascii-character ?\n) | 496 (put 'linefeed 'ascii-character ?\n) |
497 (put 'clear 'ascii-character 12) | 497 (put 'clear 'ascii-character 12) |
498 (put 'return 'ascii-character 13) | 498 (put 'return 'ascii-character 13) |
499 (put 'escape 'ascii-character ?\e) | 499 (put 'escape 'ascii-character ?\e) |
500 | 500 |
501 ;; Set up to recognize vendor-specific keysyms. | |
502 ;; Unless/until there is a real conflict, | |
503 ;; we need not try to make this list depend on | |
504 ;; the type of X server in use. | |
501 (setq vendor-key-syms | 505 (setq vendor-key-syms |
502 '( | 506 '( |
503 ;; These are some HP keys. | 507 ;; These are some HP keys. |
508 ( 168 . mute-acute) | |
509 ( 169 . mute-grave) | |
510 ( 170 . mute-asciicircum) | |
511 ( 171 . mute-diaeresis) | |
512 ( 172 . mute-asciitilde) | |
513 ( 175 . lira) | |
514 ( 190 . guilder) | |
515 ( 252 . block) | |
516 ( 256 . longminus) | |
504 (65388 . reset) | 517 (65388 . reset) |
505 (65389 . system) | 518 (65389 . system) |
506 (65390 . user) | 519 (65390 . user) |
507 (65391 . clearline) | 520 (65391 . clearline) |
508 (65392 . insertline) | 521 (65392 . insertline) |
511 (65395 . deletechar) | 524 (65395 . deletechar) |
512 (65396 . backtab) | 525 (65396 . backtab) |
513 (65397 . kp-backtab) | 526 (65397 . kp-backtab) |
514 ;; This is used on some system or other. | 527 ;; This is used on some system or other. |
515 (0 . remove) | 528 (0 . remove) |
529 ;; These are for Sun. | |
530 (392976 . f35) | |
531 (392977 . f36) | |
532 (393056 . req))) | |
516 )) | 533 )) |
517 | 534 |
518 ;;;; Selections and cut buffers | 535 ;;;; Selections and cut buffers |
519 | 536 |
520 ;;; We keep track of the last text selected here, so we can check the | 537 ;;; We keep track of the last text selected here, so we can check the |