emacs_keymap.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:33k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* emacs_keymap.c -- the keymap for emacs_mode in readline (). */
  2. /* Copyright (C) 1987, 1989, 1992 Free Software Foundation, Inc.
  3.    This file is part of the GNU Readline Library, a library for
  4.    reading lines of text with interactive input and history editing.
  5.    The GNU Readline Library is free software; you can redistribute it
  6.    and/or modify it under the terms of the GNU General Public License
  7.    as published by the Free Software Foundation; either version 1, or
  8.    (at your option) any later version.
  9.    The GNU Readline Library is distributed in the hope that it will be
  10.    useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  11.    of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.    The GNU General Public License is often shipped with GNU software, and
  14.    is generally kept in a file called COPYING or LICENSE.  If you do not
  15.    have a copy of the license, write to the Free Software Foundation,
  16.    675 Mass Ave, Cambridge, MA 02139, USA. */
  17. #if !defined (BUFSIZ)
  18. #include <stdio.h>
  19. #endif /* !BUFSIZ */
  20. #include "readline.h"
  21. /* An array of function pointers, one for each possible key.
  22.    If the type byte is ISKMAP, then the pointer is the address of
  23.    a keymap. */
  24. KEYMAP_ENTRY_ARRAY emacs_standard_keymap = {
  25.   /* Control keys. */
  26.   { ISFUNC, rl_set_mark }, /* Control-@ */
  27.   { ISFUNC, rl_beg_of_line }, /* Control-a */
  28.   { ISFUNC, rl_backward }, /* Control-b */
  29.   { ISFUNC, (Function *)0x0 }, /* Control-c */
  30.   { ISFUNC, rl_delete }, /* Control-d */
  31.   { ISFUNC, rl_end_of_line }, /* Control-e */
  32.   { ISFUNC, rl_forward }, /* Control-f */
  33.   { ISFUNC, rl_abort }, /* Control-g */
  34.   { ISFUNC, rl_rubout }, /* Control-h */
  35.   { ISFUNC, rl_complete }, /* Control-i */
  36.   { ISFUNC, rl_newline }, /* Control-j */
  37.   { ISFUNC, rl_kill_line }, /* Control-k */
  38.   { ISFUNC, rl_clear_screen }, /* Control-l */
  39.   { ISFUNC, rl_newline }, /* Control-m */
  40.   { ISFUNC, rl_get_next_history }, /* Control-n */
  41.   { ISFUNC, (Function *)0x0 }, /* Control-o */
  42.   { ISFUNC, rl_get_previous_history }, /* Control-p */
  43.   { ISFUNC, rl_quoted_insert }, /* Control-q */
  44.   { ISFUNC, rl_reverse_search_history }, /* Control-r */
  45.   { ISFUNC, rl_forward_search_history }, /* Control-s */
  46.   { ISFUNC, rl_transpose_chars }, /* Control-t */
  47.   { ISFUNC, rl_unix_line_discard }, /* Control-u */
  48.   { ISFUNC, rl_quoted_insert }, /* Control-v */
  49.   { ISFUNC, rl_unix_word_rubout }, /* Control-w */
  50.   { ISKMAP, (Function *)emacs_ctlx_keymap }, /* Control-x */
  51.   { ISFUNC, rl_yank }, /* Control-y */
  52.   { ISFUNC, (Function *)0x0 }, /* Control-z */
  53.   { ISKMAP, (Function *)emacs_meta_keymap }, /* Control-[ */
  54.   { ISFUNC, (Function *)0x0 }, /* Control- */
  55.   { ISFUNC, rl_char_search }, /* Control-] */
  56.   { ISFUNC, (Function *)0x0 }, /* Control-^ */
  57.   { ISFUNC, rl_undo_command }, /* Control-_ */
  58.   /* The start of printing characters. */
  59.   { ISFUNC, rl_insert }, /* SPACE */
  60.   { ISFUNC, rl_insert }, /* ! */
  61.   { ISFUNC, rl_insert }, /* " */
  62.   { ISFUNC, rl_insert }, /* # */
  63.   { ISFUNC, rl_insert }, /* $ */
  64.   { ISFUNC, rl_insert }, /* % */
  65.   { ISFUNC, rl_insert }, /* & */
  66.   { ISFUNC, rl_insert }, /* ' */
  67.   { ISFUNC, rl_insert }, /* ( */
  68. #if defined (PAREN_MATCHING)
  69.   { ISFUNC, rl_insert_close }, /* ) */
  70. #else
  71.   { ISFUNC, rl_insert }, /* ) */
  72. #endif /* !PAREN_MATCHING */
  73.   { ISFUNC, rl_insert }, /* * */
  74.   { ISFUNC, rl_insert }, /* + */
  75.   { ISFUNC, rl_insert }, /* , */
  76.   { ISFUNC, rl_insert }, /* - */
  77.   { ISFUNC, rl_insert }, /* . */
  78.   { ISFUNC, rl_insert }, /* / */
  79.   /* Regular digits. */
  80.   { ISFUNC, rl_insert }, /* 0 */
  81.   { ISFUNC, rl_insert }, /* 1 */
  82.   { ISFUNC, rl_insert }, /* 2 */
  83.   { ISFUNC, rl_insert }, /* 3 */
  84.   { ISFUNC, rl_insert }, /* 4 */
  85.   { ISFUNC, rl_insert }, /* 5 */
  86.   { ISFUNC, rl_insert }, /* 6 */
  87.   { ISFUNC, rl_insert }, /* 7 */
  88.   { ISFUNC, rl_insert }, /* 8 */
  89.   { ISFUNC, rl_insert }, /* 9 */
  90.   /* A little more punctuation. */
  91.   { ISFUNC, rl_insert }, /* : */
  92.   { ISFUNC, rl_insert }, /* ; */
  93.   { ISFUNC, rl_insert }, /* < */
  94.   { ISFUNC, rl_insert }, /* = */
  95.   { ISFUNC, rl_insert }, /* > */
  96.   { ISFUNC, rl_insert }, /* ? */
  97.   { ISFUNC, rl_insert }, /* @ */
  98.   /* Uppercase alphabet. */
  99.   { ISFUNC, rl_insert }, /* A */
  100.   { ISFUNC, rl_insert }, /* B */
  101.   { ISFUNC, rl_insert }, /* C */
  102.   { ISFUNC, rl_insert }, /* D */
  103.   { ISFUNC, rl_insert }, /* E */
  104.   { ISFUNC, rl_insert }, /* F */
  105.   { ISFUNC, rl_insert }, /* G */
  106.   { ISFUNC, rl_insert }, /* H */
  107.   { ISFUNC, rl_insert }, /* I */
  108.   { ISFUNC, rl_insert }, /* J */
  109.   { ISFUNC, rl_insert }, /* K */
  110.   { ISFUNC, rl_insert }, /* L */
  111.   { ISFUNC, rl_insert }, /* M */
  112.   { ISFUNC, rl_insert }, /* N */
  113.   { ISFUNC, rl_insert }, /* O */
  114.   { ISFUNC, rl_insert }, /* P */
  115.   { ISFUNC, rl_insert }, /* Q */
  116.   { ISFUNC, rl_insert }, /* R */
  117.   { ISFUNC, rl_insert }, /* S */
  118.   { ISFUNC, rl_insert }, /* T */
  119.   { ISFUNC, rl_insert }, /* U */
  120.   { ISFUNC, rl_insert }, /* V */
  121.   { ISFUNC, rl_insert }, /* W */
  122.   { ISFUNC, rl_insert }, /* X */
  123.   { ISFUNC, rl_insert }, /* Y */
  124.   { ISFUNC, rl_insert }, /* Z */
  125.   /* Some more punctuation. */
  126.   { ISFUNC, rl_insert }, /* [ */
  127.   { ISFUNC, rl_insert }, /*  */
  128. #if defined (PAREN_MATCHING)
  129.   { ISFUNC, rl_insert_close }, /* ] */
  130. #else
  131.   { ISFUNC, rl_insert }, /* ] */
  132. #endif /* !PAREN_MATCHING */
  133.   { ISFUNC, rl_insert }, /* ^ */
  134.   { ISFUNC, rl_insert }, /* _ */
  135.   { ISFUNC, rl_insert }, /* ` */
  136.   /* Lowercase alphabet. */
  137.   { ISFUNC, rl_insert }, /* a */
  138.   { ISFUNC, rl_insert }, /* b */
  139.   { ISFUNC, rl_insert }, /* c */
  140.   { ISFUNC, rl_insert }, /* d */
  141.   { ISFUNC, rl_insert }, /* e */
  142.   { ISFUNC, rl_insert }, /* f */
  143.   { ISFUNC, rl_insert }, /* g */
  144.   { ISFUNC, rl_insert }, /* h */
  145.   { ISFUNC, rl_insert }, /* i */
  146.   { ISFUNC, rl_insert }, /* j */
  147.   { ISFUNC, rl_insert }, /* k */
  148.   { ISFUNC, rl_insert }, /* l */
  149.   { ISFUNC, rl_insert }, /* m */
  150.   { ISFUNC, rl_insert }, /* n */
  151.   { ISFUNC, rl_insert }, /* o */
  152.   { ISFUNC, rl_insert }, /* p */
  153.   { ISFUNC, rl_insert }, /* q */
  154.   { ISFUNC, rl_insert }, /* r */
  155.   { ISFUNC, rl_insert }, /* s */
  156.   { ISFUNC, rl_insert }, /* t */
  157.   { ISFUNC, rl_insert }, /* u */
  158.   { ISFUNC, rl_insert }, /* v */
  159.   { ISFUNC, rl_insert }, /* w */
  160.   { ISFUNC, rl_insert }, /* x */
  161.   { ISFUNC, rl_insert }, /* y */
  162.   { ISFUNC, rl_insert }, /* z */
  163.   /* Final punctuation. */
  164.   { ISFUNC, rl_insert }, /* { */
  165.   { ISFUNC, rl_insert }, /* | */
  166. #if defined (PAREN_MATCHING)
  167.   { ISFUNC, rl_insert_close }, /* } */
  168. #else
  169.   { ISFUNC, rl_insert }, /* } */
  170. #endif /* !PAREN_MATCHING */
  171.   { ISFUNC, rl_insert }, /* ~ */
  172.   { ISFUNC, rl_rubout }, /* RUBOUT */
  173. #if KEYMAP_SIZE > 128
  174.   /* Pure 8-bit characters (128 - 159).
  175.      These might be used in some
  176.      character sets. */
  177.   { ISFUNC, rl_insert }, /* ? */
  178.   { ISFUNC, rl_insert }, /* ? */
  179.   { ISFUNC, rl_insert }, /* ? */
  180.   { ISFUNC, rl_insert }, /* ? */
  181.   { ISFUNC, rl_insert }, /* ? */
  182.   { ISFUNC, rl_insert }, /* ? */
  183.   { ISFUNC, rl_insert }, /* ? */
  184.   { ISFUNC, rl_insert }, /* ? */
  185.   { ISFUNC, rl_insert }, /* ? */
  186.   { ISFUNC, rl_insert }, /* ? */
  187.   { ISFUNC, rl_insert }, /* ? */
  188.   { ISFUNC, rl_insert }, /* ? */
  189.   { ISFUNC, rl_insert }, /* ? */
  190.   { ISFUNC, rl_insert }, /* ? */
  191.   { ISFUNC, rl_insert }, /* ? */
  192.   { ISFUNC, rl_insert }, /* ? */
  193.   { ISFUNC, rl_insert }, /* ? */
  194.   { ISFUNC, rl_insert }, /* ? */
  195.   { ISFUNC, rl_insert }, /* ? */
  196.   { ISFUNC, rl_insert }, /* ? */
  197.   { ISFUNC, rl_insert }, /* ? */
  198.   { ISFUNC, rl_insert }, /* ? */
  199.   { ISFUNC, rl_insert }, /* ? */
  200.   { ISFUNC, rl_insert }, /* ? */
  201.   { ISFUNC, rl_insert }, /* ? */
  202.   { ISFUNC, rl_insert }, /* ? */
  203.   { ISFUNC, rl_insert }, /* ? */
  204.   { ISFUNC, rl_insert }, /* ? */
  205.   { ISFUNC, rl_insert }, /* ? */
  206.   { ISFUNC, rl_insert }, /* ? */
  207.   { ISFUNC, rl_insert }, /* ? */
  208.   { ISFUNC, rl_insert }, /* ? */
  209.   /* ISO Latin-1 characters (160 - 255) */
  210.   { ISFUNC, rl_insert }, /* No-break space */
  211.   { ISFUNC, rl_insert }, /* Inverted exclamation mark */
  212.   { ISFUNC, rl_insert }, /* Cent sign */
  213.   { ISFUNC, rl_insert }, /* Pound sign */
  214.   { ISFUNC, rl_insert }, /* Currency sign */
  215.   { ISFUNC, rl_insert }, /* Yen sign */
  216.   { ISFUNC, rl_insert }, /* Broken bar */
  217.   { ISFUNC, rl_insert }, /* Section sign */
  218.   { ISFUNC, rl_insert }, /* Diaeresis */
  219.   { ISFUNC, rl_insert }, /* Copyright sign */
  220.   { ISFUNC, rl_insert }, /* Feminine ordinal indicator */
  221.   { ISFUNC, rl_insert }, /* Left pointing double angle quotation mark */
  222.   { ISFUNC, rl_insert }, /* Not sign */
  223.   { ISFUNC, rl_insert }, /* Soft hyphen */
  224.   { ISFUNC, rl_insert }, /* Registered sign */
  225.   { ISFUNC, rl_insert }, /* Macron */
  226.   { ISFUNC, rl_insert }, /* Degree sign */
  227.   { ISFUNC, rl_insert }, /* Plus-minus sign */
  228.   { ISFUNC, rl_insert }, /* Superscript two */
  229.   { ISFUNC, rl_insert }, /* Superscript three */
  230.   { ISFUNC, rl_insert }, /* Acute accent */
  231.   { ISFUNC, rl_insert }, /* Micro sign */
  232.   { ISFUNC, rl_insert }, /* Pilcrow sign */
  233.   { ISFUNC, rl_insert }, /* Middle dot */
  234.   { ISFUNC, rl_insert }, /* Cedilla */
  235.   { ISFUNC, rl_insert }, /* Superscript one */
  236.   { ISFUNC, rl_insert }, /* Masculine ordinal indicator */
  237.   { ISFUNC, rl_insert }, /* Right pointing double angle quotation mark */
  238.   { ISFUNC, rl_insert }, /* Vulgar fraction one quarter */
  239.   { ISFUNC, rl_insert }, /* Vulgar fraction one half */
  240.   { ISFUNC, rl_insert }, /* Vulgar fraction three quarters */
  241.   { ISFUNC, rl_insert }, /* Inverted questionk mark */
  242.   { ISFUNC, rl_insert }, /* Latin capital letter a with grave */
  243.   { ISFUNC, rl_insert }, /* Latin capital letter a with acute */
  244.   { ISFUNC, rl_insert }, /* Latin capital letter a with circumflex */
  245.   { ISFUNC, rl_insert }, /* Latin capital letter a with tilde */
  246.   { ISFUNC, rl_insert }, /* Latin capital letter a with diaeresis */
  247.   { ISFUNC, rl_insert }, /* Latin capital letter a with ring above */
  248.   { ISFUNC, rl_insert }, /* Latin capital letter ae */
  249.   { ISFUNC, rl_insert }, /* Latin capital letter c with cedilla */
  250.   { ISFUNC, rl_insert }, /* Latin capital letter e with grave */
  251.   { ISFUNC, rl_insert }, /* Latin capital letter e with acute */
  252.   { ISFUNC, rl_insert }, /* Latin capital letter e with circumflex */
  253.   { ISFUNC, rl_insert }, /* Latin capital letter e with diaeresis */
  254.   { ISFUNC, rl_insert }, /* Latin capital letter i with grave */
  255.   { ISFUNC, rl_insert }, /* Latin capital letter i with acute */
  256.   { ISFUNC, rl_insert }, /* Latin capital letter i with circumflex */
  257.   { ISFUNC, rl_insert }, /* Latin capital letter i with diaeresis */
  258.   { ISFUNC, rl_insert }, /* Latin capital letter eth (Icelandic) */
  259.   { ISFUNC, rl_insert }, /* Latin capital letter n with tilde */
  260.   { ISFUNC, rl_insert }, /* Latin capital letter o with grave */
  261.   { ISFUNC, rl_insert }, /* Latin capital letter o with acute */
  262.   { ISFUNC, rl_insert }, /* Latin capital letter o with circumflex */
  263.   { ISFUNC, rl_insert }, /* Latin capital letter o with tilde */
  264.   { ISFUNC, rl_insert }, /* Latin capital letter o with diaeresis */
  265.   { ISFUNC, rl_insert }, /* Multiplication sign */
  266.   { ISFUNC, rl_insert }, /* Latin capital letter o with stroke */
  267.   { ISFUNC, rl_insert }, /* Latin capital letter u with grave */
  268.   { ISFUNC, rl_insert }, /* Latin capital letter u with acute */
  269.   { ISFUNC, rl_insert }, /* Latin capital letter u with circumflex */
  270.   { ISFUNC, rl_insert }, /* Latin capital letter u with diaeresis */
  271.   { ISFUNC, rl_insert }, /* Latin capital letter Y with acute */
  272.   { ISFUNC, rl_insert }, /* Latin capital letter thorn (Icelandic) */
  273.   { ISFUNC, rl_insert }, /* Latin small letter sharp s (German) */
  274.   { ISFUNC, rl_insert }, /* Latin small letter a with grave */
  275.   { ISFUNC, rl_insert }, /* Latin small letter a with acute */
  276.   { ISFUNC, rl_insert }, /* Latin small letter a with circumflex */
  277.   { ISFUNC, rl_insert }, /* Latin small letter a with tilde */
  278.   { ISFUNC, rl_insert }, /* Latin small letter a with diaeresis */
  279.   { ISFUNC, rl_insert }, /* Latin small letter a with ring above */
  280.   { ISFUNC, rl_insert }, /* Latin small letter ae */
  281.   { ISFUNC, rl_insert }, /* Latin small letter c with cedilla */
  282.   { ISFUNC, rl_insert }, /* Latin small letter e with grave */
  283.   { ISFUNC, rl_insert }, /* Latin small letter e with acute */
  284.   { ISFUNC, rl_insert }, /* Latin small letter e with circumflex */
  285.   { ISFUNC, rl_insert }, /* Latin small letter e with diaeresis */
  286.   { ISFUNC, rl_insert }, /* Latin small letter i with grave */
  287.   { ISFUNC, rl_insert }, /* Latin small letter i with acute */
  288.   { ISFUNC, rl_insert }, /* Latin small letter i with circumflex */
  289.   { ISFUNC, rl_insert }, /* Latin small letter i with diaeresis */
  290.   { ISFUNC, rl_insert }, /* Latin small letter eth (Icelandic) */
  291.   { ISFUNC, rl_insert }, /* Latin small letter n with tilde */
  292.   { ISFUNC, rl_insert }, /* Latin small letter o with grave */
  293.   { ISFUNC, rl_insert }, /* Latin small letter o with acute */
  294.   { ISFUNC, rl_insert }, /* Latin small letter o with circumflex */
  295.   { ISFUNC, rl_insert }, /* Latin small letter o with tilde */
  296.   { ISFUNC, rl_insert }, /* Latin small letter o with diaeresis */
  297.   { ISFUNC, rl_insert }, /* Division sign */
  298.   { ISFUNC, rl_insert }, /* Latin small letter o with stroke */
  299.   { ISFUNC, rl_insert }, /* Latin small letter u with grave */
  300.   { ISFUNC, rl_insert }, /* Latin small letter u with acute */
  301.   { ISFUNC, rl_insert }, /* Latin small letter u with circumflex */
  302.   { ISFUNC, rl_insert }, /* Latin small letter u with diaeresis */
  303.   { ISFUNC, rl_insert }, /* Latin small letter y with acute */
  304.   { ISFUNC, rl_insert }, /* Latin small letter thorn (Icelandic) */
  305.   { ISFUNC, rl_insert } /* Latin small letter y with diaeresis */
  306. #endif /* KEYMAP_SIZE > 128 */
  307. };
  308. KEYMAP_ENTRY_ARRAY emacs_meta_keymap = {
  309.   /* Meta keys.  Just like above, but the high bit is set. */
  310.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-@ */
  311.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-a */
  312.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-b */
  313.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-c */
  314.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-d */
  315.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-e */
  316.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-f */
  317.   { ISFUNC, rl_abort }, /* Meta-Control-g */
  318.   { ISFUNC, rl_backward_kill_word }, /* Meta-Control-h */
  319.   { ISFUNC, rl_tab_insert }, /* Meta-Control-i */
  320.   { ISFUNC, rl_vi_editing_mode }, /* Meta-Control-j */
  321.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-k */
  322.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-l */
  323.   { ISFUNC, rl_vi_editing_mode }, /* Meta-Control-m */
  324.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-n */
  325.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-o */
  326.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-p */
  327.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-q */
  328.   { ISFUNC, rl_revert_line }, /* Meta-Control-r */
  329.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-s */
  330.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-t */
  331.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-u */
  332.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-v */
  333.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-w */
  334.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-x */
  335.   { ISFUNC, rl_yank_nth_arg }, /* Meta-Control-y */
  336.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-z */
  337.   { ISFUNC, rl_complete }, /* Meta-Control-[ */
  338.   { ISFUNC, (Function *)0x0 }, /* Meta-Control- */
  339.   { ISFUNC, rl_backward_char_search }, /* Meta-Control-] */
  340.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-^ */
  341.   { ISFUNC, (Function *)0x0 }, /* Meta-Control-_ */
  342.   /* The start of printing characters. */
  343.   { ISFUNC, rl_set_mark }, /* Meta-SPACE */
  344.   { ISFUNC, (Function *)0x0 }, /* Meta-! */
  345.   { ISFUNC, (Function *)0x0 }, /* Meta-" */
  346.   { ISFUNC, rl_insert_comment },/* Meta-# */
  347.   { ISFUNC, (Function *)0x0 }, /* Meta-$ */
  348.   { ISFUNC, (Function *)0x0 }, /* Meta-% */
  349.   { ISFUNC, rl_tilde_expand }, /* Meta-& */
  350.   { ISFUNC, (Function *)0x0 }, /* Meta-' */
  351.   { ISFUNC, (Function *)0x0 }, /* Meta-( */
  352.   { ISFUNC, (Function *)0x0 }, /* Meta-) */
  353.   { ISFUNC, rl_insert_completions }, /* Meta-* */
  354.   { ISFUNC, (Function *)0x0 }, /* Meta-+ */
  355.   { ISFUNC, (Function *)0x0 }, /* Meta-, */
  356.   { ISFUNC, rl_digit_argument }, /* Meta-- */
  357.   { ISFUNC, rl_yank_last_arg}, /* Meta-. */
  358.   { ISFUNC, (Function *)0x0 }, /* Meta-/ */
  359.   /* Regular digits. */
  360.   { ISFUNC, rl_digit_argument }, /* Meta-0 */
  361.   { ISFUNC, rl_digit_argument }, /* Meta-1 */
  362.   { ISFUNC, rl_digit_argument }, /* Meta-2 */
  363.   { ISFUNC, rl_digit_argument }, /* Meta-3 */
  364.   { ISFUNC, rl_digit_argument }, /* Meta-4 */
  365.   { ISFUNC, rl_digit_argument }, /* Meta-5 */
  366.   { ISFUNC, rl_digit_argument }, /* Meta-6 */
  367.   { ISFUNC, rl_digit_argument }, /* Meta-7 */
  368.   { ISFUNC, rl_digit_argument }, /* Meta-8 */
  369.   { ISFUNC, rl_digit_argument }, /* Meta-9 */
  370.   /* A little more punctuation. */
  371.   { ISFUNC, (Function *)0x0 }, /* Meta-: */
  372.   { ISFUNC, (Function *)0x0 }, /* Meta-; */
  373.   { ISFUNC, rl_beginning_of_history }, /* Meta-< */
  374.   { ISFUNC, rl_possible_completions }, /* Meta-= */
  375.   { ISFUNC, rl_end_of_history }, /* Meta-> */
  376.   { ISFUNC, rl_possible_completions }, /* Meta-? */
  377.   { ISFUNC, (Function *)0x0 }, /* Meta-@ */
  378.   /* Uppercase alphabet. */
  379.   { ISFUNC, rl_do_lowercase_version }, /* Meta-A */
  380.   { ISFUNC, rl_do_lowercase_version }, /* Meta-B */
  381.   { ISFUNC, rl_do_lowercase_version }, /* Meta-C */
  382.   { ISFUNC, rl_do_lowercase_version }, /* Meta-D */
  383.   { ISFUNC, rl_do_lowercase_version }, /* Meta-E */
  384.   { ISFUNC, rl_do_lowercase_version }, /* Meta-F */
  385.   { ISFUNC, rl_do_lowercase_version }, /* Meta-G */
  386.   { ISFUNC, rl_do_lowercase_version }, /* Meta-H */
  387.   { ISFUNC, rl_do_lowercase_version }, /* Meta-I */
  388.   { ISFUNC, rl_do_lowercase_version }, /* Meta-J */
  389.   { ISFUNC, rl_do_lowercase_version }, /* Meta-K */
  390.   { ISFUNC, rl_do_lowercase_version }, /* Meta-L */
  391.   { ISFUNC, rl_do_lowercase_version }, /* Meta-M */
  392.   { ISFUNC, rl_do_lowercase_version }, /* Meta-N */
  393.   { ISFUNC, rl_do_lowercase_version }, /* Meta-O */
  394.   { ISFUNC, rl_do_lowercase_version }, /* Meta-P */
  395.   { ISFUNC, rl_do_lowercase_version }, /* Meta-Q */
  396.   { ISFUNC, rl_do_lowercase_version }, /* Meta-R */
  397.   { ISFUNC, rl_do_lowercase_version }, /* Meta-S */
  398.   { ISFUNC, rl_do_lowercase_version }, /* Meta-T */
  399.   { ISFUNC, rl_do_lowercase_version }, /* Meta-U */
  400.   { ISFUNC, rl_do_lowercase_version }, /* Meta-V */
  401.   { ISFUNC, rl_do_lowercase_version }, /* Meta-W */
  402.   { ISFUNC, rl_do_lowercase_version }, /* Meta-X */
  403.   { ISFUNC, rl_do_lowercase_version }, /* Meta-Y */
  404.   { ISFUNC, rl_do_lowercase_version }, /* Meta-Z */
  405.   /* Some more punctuation. */
  406.   { ISFUNC, (Function *)0x0 }, /* Meta-[ */ /* was rl_arrow_keys */
  407.   { ISFUNC, rl_delete_horizontal_space }, /* Meta- */
  408.   { ISFUNC, (Function *)0x0 }, /* Meta-] */
  409.   { ISFUNC, (Function *)0x0 }, /* Meta-^ */
  410.   { ISFUNC, rl_yank_last_arg }, /* Meta-_ */
  411.   { ISFUNC, (Function *)0x0 }, /* Meta-` */
  412.   /* Lowercase alphabet. */
  413.   { ISFUNC, (Function *)0x0 }, /* Meta-a */
  414.   { ISFUNC, rl_backward_word }, /* Meta-b */
  415.   { ISFUNC, rl_capitalize_word }, /* Meta-c */
  416.   { ISFUNC, rl_kill_word }, /* Meta-d */
  417.   { ISFUNC, (Function *)0x0 }, /* Meta-e */
  418.   { ISFUNC, rl_forward_word }, /* Meta-f */
  419.   { ISFUNC, (Function *)0x0 }, /* Meta-g */
  420.   { ISFUNC, (Function *)0x0 }, /* Meta-h */
  421.   { ISFUNC, (Function *)0x0 }, /* Meta-i */
  422.   { ISFUNC, (Function *)0x0 }, /* Meta-j */
  423.   { ISFUNC, (Function *)0x0 }, /* Meta-k */
  424.   { ISFUNC, rl_downcase_word }, /* Meta-l */
  425.   { ISFUNC, (Function *)0x0 }, /* Meta-m */
  426.   { ISFUNC, rl_noninc_forward_search }, /* Meta-n */
  427.   { ISFUNC, (Function *)0x0 }, /* Meta-o */ /* was rl_arrow_keys */
  428.   { ISFUNC, rl_noninc_reverse_search }, /* Meta-p */
  429.   { ISFUNC, (Function *)0x0 }, /* Meta-q */
  430.   { ISFUNC, rl_revert_line }, /* Meta-r */
  431.   { ISFUNC, (Function *)0x0 }, /* Meta-s */
  432.   { ISFUNC, rl_transpose_words }, /* Meta-t */
  433.   { ISFUNC, rl_upcase_word }, /* Meta-u */
  434.   { ISFUNC, (Function *)0x0 }, /* Meta-v */
  435.   { ISFUNC, (Function *)0x0 }, /* Meta-w */
  436.   { ISFUNC, (Function *)0x0 }, /* Meta-x */
  437.   { ISFUNC, rl_yank_pop }, /* Meta-y */
  438.   { ISFUNC, (Function *)0x0 }, /* Meta-z */
  439.   /* Final punctuation. */
  440.   { ISFUNC, (Function *)0x0 }, /* Meta-{ */
  441.   { ISFUNC, (Function *)0x0 }, /* Meta-| */
  442.   { ISFUNC, (Function *)0x0 }, /* Meta-} */
  443.   { ISFUNC, rl_tilde_expand }, /* Meta-~ */
  444.   { ISFUNC, rl_backward_kill_word }, /* Meta-rubout */
  445. #if KEYMAP_SIZE > 128
  446.   /* Undefined keys. */
  447.   { ISFUNC, (Function *)0x0 },
  448.   { ISFUNC, (Function *)0x0 },
  449.   { ISFUNC, (Function *)0x0 },
  450.   { ISFUNC, (Function *)0x0 },
  451.   { ISFUNC, (Function *)0x0 },
  452.   { ISFUNC, (Function *)0x0 },
  453.   { ISFUNC, (Function *)0x0 },
  454.   { ISFUNC, (Function *)0x0 },
  455.   { ISFUNC, (Function *)0x0 },
  456.   { ISFUNC, (Function *)0x0 },
  457.   { ISFUNC, (Function *)0x0 },
  458.   { ISFUNC, (Function *)0x0 },
  459.   { ISFUNC, (Function *)0x0 },
  460.   { ISFUNC, (Function *)0x0 },
  461.   { ISFUNC, (Function *)0x0 },
  462.   { ISFUNC, (Function *)0x0 },
  463.   { ISFUNC, (Function *)0x0 },
  464.   { ISFUNC, (Function *)0x0 },
  465.   { ISFUNC, (Function *)0x0 },
  466.   { ISFUNC, (Function *)0x0 },
  467.   { ISFUNC, (Function *)0x0 },
  468.   { ISFUNC, (Function *)0x0 },
  469.   { ISFUNC, (Function *)0x0 },
  470.   { ISFUNC, (Function *)0x0 },
  471.   { ISFUNC, (Function *)0x0 },
  472.   { ISFUNC, (Function *)0x0 },
  473.   { ISFUNC, (Function *)0x0 },
  474.   { ISFUNC, (Function *)0x0 },
  475.   { ISFUNC, (Function *)0x0 },
  476.   { ISFUNC, (Function *)0x0 },
  477.   { ISFUNC, (Function *)0x0 },
  478.   { ISFUNC, (Function *)0x0 },
  479.   { ISFUNC, (Function *)0x0 },
  480.   { ISFUNC, (Function *)0x0 },
  481.   { ISFUNC, (Function *)0x0 },
  482.   { ISFUNC, (Function *)0x0 },
  483.   { ISFUNC, (Function *)0x0 },
  484.   { ISFUNC, (Function *)0x0 },
  485.   { ISFUNC, (Function *)0x0 },
  486.   { ISFUNC, (Function *)0x0 },
  487.   { ISFUNC, (Function *)0x0 },
  488.   { ISFUNC, (Function *)0x0 },
  489.   { ISFUNC, (Function *)0x0 },
  490.   { ISFUNC, (Function *)0x0 },
  491.   { ISFUNC, (Function *)0x0 },
  492.   { ISFUNC, (Function *)0x0 },
  493.   { ISFUNC, (Function *)0x0 },
  494.   { ISFUNC, (Function *)0x0 },
  495.   { ISFUNC, (Function *)0x0 },
  496.   { ISFUNC, (Function *)0x0 },
  497.   { ISFUNC, (Function *)0x0 },
  498.   { ISFUNC, (Function *)0x0 },
  499.   { ISFUNC, (Function *)0x0 },
  500.   { ISFUNC, (Function *)0x0 },
  501.   { ISFUNC, (Function *)0x0 },
  502.   { ISFUNC, (Function *)0x0 },
  503.   { ISFUNC, (Function *)0x0 },
  504.   { ISFUNC, (Function *)0x0 },
  505.   { ISFUNC, (Function *)0x0 },
  506.   { ISFUNC, (Function *)0x0 },
  507.   { ISFUNC, (Function *)0x0 },
  508.   { ISFUNC, (Function *)0x0 },
  509.   { ISFUNC, (Function *)0x0 },
  510.   { ISFUNC, (Function *)0x0 },
  511.   { ISFUNC, (Function *)0x0 },
  512.   { ISFUNC, (Function *)0x0 },
  513.   { ISFUNC, (Function *)0x0 },
  514.   { ISFUNC, (Function *)0x0 },
  515.   { ISFUNC, (Function *)0x0 },
  516.   { ISFUNC, (Function *)0x0 },
  517.   { ISFUNC, (Function *)0x0 },
  518.   { ISFUNC, (Function *)0x0 },
  519.   { ISFUNC, (Function *)0x0 },
  520.   { ISFUNC, (Function *)0x0 },
  521.   { ISFUNC, (Function *)0x0 },
  522.   { ISFUNC, (Function *)0x0 },
  523.   { ISFUNC, (Function *)0x0 },
  524.   { ISFUNC, (Function *)0x0 },
  525.   { ISFUNC, (Function *)0x0 },
  526.   { ISFUNC, (Function *)0x0 },
  527.   { ISFUNC, (Function *)0x0 },
  528.   { ISFUNC, (Function *)0x0 },
  529.   { ISFUNC, (Function *)0x0 },
  530.   { ISFUNC, (Function *)0x0 },
  531.   { ISFUNC, (Function *)0x0 },
  532.   { ISFUNC, (Function *)0x0 },
  533.   { ISFUNC, (Function *)0x0 },
  534.   { ISFUNC, (Function *)0x0 },
  535.   { ISFUNC, (Function *)0x0 },
  536.   { ISFUNC, (Function *)0x0 },
  537.   { ISFUNC, (Function *)0x0 },
  538.   { ISFUNC, (Function *)0x0 },
  539.   { ISFUNC, (Function *)0x0 },
  540.   { ISFUNC, (Function *)0x0 },
  541.   { ISFUNC, (Function *)0x0 },
  542.   { ISFUNC, (Function *)0x0 },
  543.   { ISFUNC, (Function *)0x0 },
  544.   { ISFUNC, (Function *)0x0 },
  545.   { ISFUNC, (Function *)0x0 },
  546.   { ISFUNC, (Function *)0x0 },
  547.   { ISFUNC, (Function *)0x0 },
  548.   { ISFUNC, (Function *)0x0 },
  549.   { ISFUNC, (Function *)0x0 },
  550.   { ISFUNC, (Function *)0x0 },
  551.   { ISFUNC, (Function *)0x0 },
  552.   { ISFUNC, (Function *)0x0 },
  553.   { ISFUNC, (Function *)0x0 },
  554.   { ISFUNC, (Function *)0x0 },
  555.   { ISFUNC, (Function *)0x0 },
  556.   { ISFUNC, (Function *)0x0 },
  557.   { ISFUNC, (Function *)0x0 },
  558.   { ISFUNC, (Function *)0x0 },
  559.   { ISFUNC, (Function *)0x0 },
  560.   { ISFUNC, (Function *)0x0 },
  561.   { ISFUNC, (Function *)0x0 },
  562.   { ISFUNC, (Function *)0x0 },
  563.   { ISFUNC, (Function *)0x0 },
  564.   { ISFUNC, (Function *)0x0 },
  565.   { ISFUNC, (Function *)0x0 },
  566.   { ISFUNC, (Function *)0x0 },
  567.   { ISFUNC, (Function *)0x0 },
  568.   { ISFUNC, (Function *)0x0 },
  569.   { ISFUNC, (Function *)0x0 },
  570.   { ISFUNC, (Function *)0x0 },
  571.   { ISFUNC, (Function *)0x0 },
  572.   { ISFUNC, (Function *)0x0 },
  573.   { ISFUNC, (Function *)0x0 },
  574.   { ISFUNC, (Function *)0x0 }
  575. #endif /* KEYMAP_SIZE > 128 */
  576. };
  577. KEYMAP_ENTRY_ARRAY emacs_ctlx_keymap = {
  578.   /* Control keys. */
  579.   { ISFUNC, (Function *)0x0 }, /* Control-@ */
  580.   { ISFUNC, (Function *)0x0 }, /* Control-a */
  581.   { ISFUNC, (Function *)0x0 }, /* Control-b */
  582.   { ISFUNC, (Function *)0x0 }, /* Control-c */
  583.   { ISFUNC, (Function *)0x0 }, /* Control-d */
  584.   { ISFUNC, (Function *)0x0 }, /* Control-e */
  585.   { ISFUNC, (Function *)0x0 }, /* Control-f */
  586.   { ISFUNC, rl_abort }, /* Control-g */
  587.   { ISFUNC, (Function *)0x0 }, /* Control-h */
  588.   { ISFUNC, (Function *)0x0 }, /* Control-i */
  589.   { ISFUNC, (Function *)0x0 }, /* Control-j */
  590.   { ISFUNC, (Function *)0x0 }, /* Control-k */
  591.   { ISFUNC, (Function *)0x0 }, /* Control-l */
  592.   { ISFUNC, (Function *)0x0 }, /* Control-m */
  593.   { ISFUNC, (Function *)0x0 }, /* Control-n */
  594.   { ISFUNC, (Function *)0x0 }, /* Control-o */
  595.   { ISFUNC, (Function *)0x0 }, /* Control-p */
  596.   { ISFUNC, (Function *)0x0 }, /* Control-q */
  597.   { ISFUNC, rl_re_read_init_file }, /* Control-r */
  598.   { ISFUNC, (Function *)0x0 }, /* Control-s */
  599.   { ISFUNC, (Function *)0x0 }, /* Control-t */
  600.   { ISFUNC, rl_undo_command }, /* Control-u */
  601.   { ISFUNC, (Function *)0x0 }, /* Control-v */
  602.   { ISFUNC, (Function *)0x0 }, /* Control-w */
  603.   { ISFUNC, rl_exchange_point_and_mark },/* Control-x */
  604.   { ISFUNC, (Function *)0x0 }, /* Control-y */
  605.   { ISFUNC, (Function *)0x0 }, /* Control-z */
  606.   { ISFUNC, (Function *)0x0 }, /* Control-[ */
  607.   { ISFUNC, (Function *)0x0 }, /* Control- */
  608.   { ISFUNC, (Function *)0x0 }, /* Control-] */
  609.   { ISFUNC, (Function *)0x0 }, /* Control-^ */
  610.   { ISFUNC, (Function *)0x0 }, /* Control-_ */
  611.   /* The start of printing characters. */
  612.   { ISFUNC, (Function *)0x0 }, /* SPACE */
  613.   { ISFUNC, (Function *)0x0 }, /* ! */
  614.   { ISFUNC, (Function *)0x0 }, /* " */
  615.   { ISFUNC, (Function *)0x0 }, /* # */
  616.   { ISFUNC, (Function *)0x0 }, /* $ */
  617.   { ISFUNC, (Function *)0x0 }, /* % */
  618.   { ISFUNC, (Function *)0x0 }, /* & */
  619.   { ISFUNC, (Function *)0x0 }, /* ' */
  620.   { ISFUNC, rl_start_kbd_macro }, /* ( */
  621.   { ISFUNC, rl_end_kbd_macro  }, /* ) */
  622.   { ISFUNC, (Function *)0x0 }, /* * */
  623.   { ISFUNC, (Function *)0x0 }, /* + */
  624.   { ISFUNC, (Function *)0x0 }, /* , */
  625.   { ISFUNC, (Function *)0x0 }, /* - */
  626.   { ISFUNC, (Function *)0x0 }, /* . */
  627.   { ISFUNC, (Function *)0x0 }, /* / */
  628.   /* Regular digits. */
  629.   { ISFUNC, (Function *)0x0 }, /* 0 */
  630.   { ISFUNC, (Function *)0x0 }, /* 1 */
  631.   { ISFUNC, (Function *)0x0 }, /* 2 */
  632.   { ISFUNC, (Function *)0x0 }, /* 3 */
  633.   { ISFUNC, (Function *)0x0 }, /* 4 */
  634.   { ISFUNC, (Function *)0x0 }, /* 5 */
  635.   { ISFUNC, (Function *)0x0 }, /* 6 */
  636.   { ISFUNC, (Function *)0x0 }, /* 7 */
  637.   { ISFUNC, (Function *)0x0 }, /* 8 */
  638.   { ISFUNC, (Function *)0x0 }, /* 9 */
  639.   /* A little more punctuation. */
  640.   { ISFUNC, (Function *)0x0 }, /* : */
  641.   { ISFUNC, (Function *)0x0 }, /* ; */
  642.   { ISFUNC, (Function *)0x0 }, /* < */
  643.   { ISFUNC, (Function *)0x0 }, /* = */
  644.   { ISFUNC, (Function *)0x0 }, /* > */
  645.   { ISFUNC, (Function *)0x0 }, /* ? */
  646.   { ISFUNC, (Function *)0x0 }, /* @ */
  647.   /* Uppercase alphabet. */
  648.   { ISFUNC, rl_do_lowercase_version }, /* A */
  649.   { ISFUNC, rl_do_lowercase_version }, /* B */
  650.   { ISFUNC, rl_do_lowercase_version }, /* C */
  651.   { ISFUNC, rl_do_lowercase_version }, /* D */
  652.   { ISFUNC, rl_do_lowercase_version }, /* E */
  653.   { ISFUNC, rl_do_lowercase_version }, /* F */
  654.   { ISFUNC, rl_do_lowercase_version }, /* G */
  655.   { ISFUNC, rl_do_lowercase_version }, /* H */
  656.   { ISFUNC, rl_do_lowercase_version }, /* I */
  657.   { ISFUNC, rl_do_lowercase_version }, /* J */
  658.   { ISFUNC, rl_do_lowercase_version }, /* K */
  659.   { ISFUNC, rl_do_lowercase_version }, /* L */
  660.   { ISFUNC, rl_do_lowercase_version }, /* M */
  661.   { ISFUNC, rl_do_lowercase_version }, /* N */
  662.   { ISFUNC, rl_do_lowercase_version }, /* O */
  663.   { ISFUNC, rl_do_lowercase_version }, /* P */
  664.   { ISFUNC, rl_do_lowercase_version }, /* Q */
  665.   { ISFUNC, rl_do_lowercase_version }, /* R */
  666.   { ISFUNC, rl_do_lowercase_version }, /* S */
  667.   { ISFUNC, rl_do_lowercase_version }, /* T */
  668.   { ISFUNC, rl_do_lowercase_version }, /* U */
  669.   { ISFUNC, rl_do_lowercase_version }, /* V */
  670.   { ISFUNC, rl_do_lowercase_version }, /* W */
  671.   { ISFUNC, rl_do_lowercase_version }, /* X */
  672.   { ISFUNC, rl_do_lowercase_version }, /* Y */
  673.   { ISFUNC, rl_do_lowercase_version }, /* Z */
  674.   /* Some more punctuation. */
  675.   { ISFUNC, (Function *)0x0 }, /* [ */
  676.   { ISFUNC, (Function *)0x0 }, /*  */
  677.   { ISFUNC, (Function *)0x0 }, /* ] */
  678.   { ISFUNC, (Function *)0x0 }, /* ^ */
  679.   { ISFUNC, (Function *)0x0 }, /* _ */
  680.   { ISFUNC, (Function *)0x0 }, /* ` */
  681.   /* Lowercase alphabet. */
  682.   { ISFUNC, (Function *)0x0 }, /* a */
  683.   { ISFUNC, (Function *)0x0 }, /* b */
  684.   { ISFUNC, (Function *)0x0 }, /* c */
  685.   { ISFUNC, (Function *)0x0 }, /* d */
  686.   { ISFUNC, rl_call_last_kbd_macro }, /* e */
  687.   { ISFUNC, (Function *)0x0 }, /* f */
  688.   { ISFUNC, (Function *)0x0 }, /* g */
  689.   { ISFUNC, (Function *)0x0 }, /* h */
  690.   { ISFUNC, (Function *)0x0 }, /* i */
  691.   { ISFUNC, (Function *)0x0 }, /* j */
  692.   { ISFUNC, (Function *)0x0 }, /* k */
  693.   { ISFUNC, (Function *)0x0 }, /* l */
  694.   { ISFUNC, (Function *)0x0 }, /* m */
  695.   { ISFUNC, (Function *)0x0 }, /* n */
  696.   { ISFUNC, (Function *)0x0 }, /* o */
  697.   { ISFUNC, (Function *)0x0 }, /* p */
  698.   { ISFUNC, (Function *)0x0 }, /* q */
  699.   { ISFUNC, (Function *)0x0 }, /* r */
  700.   { ISFUNC, (Function *)0x0 }, /* s */
  701.   { ISFUNC, (Function *)0x0 }, /* t */
  702.   { ISFUNC, (Function *)0x0 }, /* u */
  703.   { ISFUNC, (Function *)0x0 }, /* v */
  704.   { ISFUNC, (Function *)0x0 }, /* w */
  705.   { ISFUNC, (Function *)0x0 }, /* x */
  706.   { ISFUNC, (Function *)0x0 }, /* y */
  707.   { ISFUNC, (Function *)0x0 }, /* z */
  708.   /* Final punctuation. */
  709.   { ISFUNC, (Function *)0x0 }, /* { */
  710.   { ISFUNC, (Function *)0x0 }, /* | */
  711.   { ISFUNC, (Function *)0x0 }, /* } */
  712.   { ISFUNC, (Function *)0x0 }, /* ~ */
  713.   { ISFUNC, rl_backward_kill_line }, /* RUBOUT */
  714. #if KEYMAP_SIZE > 128
  715.   /* Undefined keys. */
  716.   { ISFUNC, (Function *)0x0 },
  717.   { ISFUNC, (Function *)0x0 },
  718.   { ISFUNC, (Function *)0x0 },
  719.   { ISFUNC, (Function *)0x0 },
  720.   { ISFUNC, (Function *)0x0 },
  721.   { ISFUNC, (Function *)0x0 },
  722.   { ISFUNC, (Function *)0x0 },
  723.   { ISFUNC, (Function *)0x0 },
  724.   { ISFUNC, (Function *)0x0 },
  725.   { ISFUNC, (Function *)0x0 },
  726.   { ISFUNC, (Function *)0x0 },
  727.   { ISFUNC, (Function *)0x0 },
  728.   { ISFUNC, (Function *)0x0 },
  729.   { ISFUNC, (Function *)0x0 },
  730.   { ISFUNC, (Function *)0x0 },
  731.   { ISFUNC, (Function *)0x0 },
  732.   { ISFUNC, (Function *)0x0 },
  733.   { ISFUNC, (Function *)0x0 },
  734.   { ISFUNC, (Function *)0x0 },
  735.   { ISFUNC, (Function *)0x0 },
  736.   { ISFUNC, (Function *)0x0 },
  737.   { ISFUNC, (Function *)0x0 },
  738.   { ISFUNC, (Function *)0x0 },
  739.   { ISFUNC, (Function *)0x0 },
  740.   { ISFUNC, (Function *)0x0 },
  741.   { ISFUNC, (Function *)0x0 },
  742.   { ISFUNC, (Function *)0x0 },
  743.   { ISFUNC, (Function *)0x0 },
  744.   { ISFUNC, (Function *)0x0 },
  745.   { ISFUNC, (Function *)0x0 },
  746.   { ISFUNC, (Function *)0x0 },
  747.   { ISFUNC, (Function *)0x0 },
  748.   { ISFUNC, (Function *)0x0 },
  749.   { ISFUNC, (Function *)0x0 },
  750.   { ISFUNC, (Function *)0x0 },
  751.   { ISFUNC, (Function *)0x0 },
  752.   { ISFUNC, (Function *)0x0 },
  753.   { ISFUNC, (Function *)0x0 },
  754.   { ISFUNC, (Function *)0x0 },
  755.   { ISFUNC, (Function *)0x0 },
  756.   { ISFUNC, (Function *)0x0 },
  757.   { ISFUNC, (Function *)0x0 },
  758.   { ISFUNC, (Function *)0x0 },
  759.   { ISFUNC, (Function *)0x0 },
  760.   { ISFUNC, (Function *)0x0 },
  761.   { ISFUNC, (Function *)0x0 },
  762.   { ISFUNC, (Function *)0x0 },
  763.   { ISFUNC, (Function *)0x0 },
  764.   { ISFUNC, (Function *)0x0 },
  765.   { ISFUNC, (Function *)0x0 },
  766.   { ISFUNC, (Function *)0x0 },
  767.   { ISFUNC, (Function *)0x0 },
  768.   { ISFUNC, (Function *)0x0 },
  769.   { ISFUNC, (Function *)0x0 },
  770.   { ISFUNC, (Function *)0x0 },
  771.   { ISFUNC, (Function *)0x0 },
  772.   { ISFUNC, (Function *)0x0 },
  773.   { ISFUNC, (Function *)0x0 },
  774.   { ISFUNC, (Function *)0x0 },
  775.   { ISFUNC, (Function *)0x0 },
  776.   { ISFUNC, (Function *)0x0 },
  777.   { ISFUNC, (Function *)0x0 },
  778.   { ISFUNC, (Function *)0x0 },
  779.   { ISFUNC, (Function *)0x0 },
  780.   { ISFUNC, (Function *)0x0 },
  781.   { ISFUNC, (Function *)0x0 },
  782.   { ISFUNC, (Function *)0x0 },
  783.   { ISFUNC, (Function *)0x0 },
  784.   { ISFUNC, (Function *)0x0 },
  785.   { ISFUNC, (Function *)0x0 },
  786.   { ISFUNC, (Function *)0x0 },
  787.   { ISFUNC, (Function *)0x0 },
  788.   { ISFUNC, (Function *)0x0 },
  789.   { ISFUNC, (Function *)0x0 },
  790.   { ISFUNC, (Function *)0x0 },
  791.   { ISFUNC, (Function *)0x0 },
  792.   { ISFUNC, (Function *)0x0 },
  793.   { ISFUNC, (Function *)0x0 },
  794.   { ISFUNC, (Function *)0x0 },
  795.   { ISFUNC, (Function *)0x0 },
  796.   { ISFUNC, (Function *)0x0 },
  797.   { ISFUNC, (Function *)0x0 },
  798.   { ISFUNC, (Function *)0x0 },
  799.   { ISFUNC, (Function *)0x0 },
  800.   { ISFUNC, (Function *)0x0 },
  801.   { ISFUNC, (Function *)0x0 },
  802.   { ISFUNC, (Function *)0x0 },
  803.   { ISFUNC, (Function *)0x0 },
  804.   { ISFUNC, (Function *)0x0 },
  805.   { ISFUNC, (Function *)0x0 },
  806.   { ISFUNC, (Function *)0x0 },
  807.   { ISFUNC, (Function *)0x0 },
  808.   { ISFUNC, (Function *)0x0 },
  809.   { ISFUNC, (Function *)0x0 },
  810.   { ISFUNC, (Function *)0x0 },
  811.   { ISFUNC, (Function *)0x0 },
  812.   { ISFUNC, (Function *)0x0 },
  813.   { ISFUNC, (Function *)0x0 },
  814.   { ISFUNC, (Function *)0x0 },
  815.   { ISFUNC, (Function *)0x0 },
  816.   { ISFUNC, (Function *)0x0 },
  817.   { ISFUNC, (Function *)0x0 },
  818.   { ISFUNC, (Function *)0x0 },
  819.   { ISFUNC, (Function *)0x0 },
  820.   { ISFUNC, (Function *)0x0 },
  821.   { ISFUNC, (Function *)0x0 },
  822.   { ISFUNC, (Function *)0x0 },
  823.   { ISFUNC, (Function *)0x0 },
  824.   { ISFUNC, (Function *)0x0 },
  825.   { ISFUNC, (Function *)0x0 },
  826.   { ISFUNC, (Function *)0x0 },
  827.   { ISFUNC, (Function *)0x0 },
  828.   { ISFUNC, (Function *)0x0 },
  829.   { ISFUNC, (Function *)0x0 },
  830.   { ISFUNC, (Function *)0x0 },
  831.   { ISFUNC, (Function *)0x0 },
  832.   { ISFUNC, (Function *)0x0 },
  833.   { ISFUNC, (Function *)0x0 },
  834.   { ISFUNC, (Function *)0x0 },
  835.   { ISFUNC, (Function *)0x0 },
  836.   { ISFUNC, (Function *)0x0 },
  837.   { ISFUNC, (Function *)0x0 },
  838.   { ISFUNC, (Function *)0x0 },
  839.   { ISFUNC, (Function *)0x0 },
  840.   { ISFUNC, (Function *)0x0 },
  841.   { ISFUNC, (Function *)0x0 },
  842.   { ISFUNC, (Function *)0x0 },
  843.   { ISFUNC, (Function *)0x0 }
  844. #endif /* KEYMAP_SIZE > 128 */
  845. };