comparison src/keyboard.h @ 91073:4bc33ffdda1a

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 902-908) - Update from CVS - Merge from emacs--rel--22 * emacs--rel--22 (patch 131-137) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 261-262) - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-278
author Miles Bader <miles@gnu.org>
date Sat, 27 Oct 2007 09:12:07 +0000
parents bdb3fe0ba9fa 9f3a25157e4f
children 606f2d163a64
comparison
equal deleted inserted replaced
91072:74ab3ea909f9 91073:4bc33ffdda1a
78 78
79 /* Last command executed by the editor command loop, not counting 79 /* Last command executed by the editor command loop, not counting
80 commands that set the prefix argument. */ 80 commands that set the prefix argument. */
81 Lisp_Object Vlast_command; 81 Lisp_Object Vlast_command;
82 82
83 /* Normally same as last-command, but never modified by 83 /* Normally same as last-command, but never modified by other commands. */
84 other commands. */
85 Lisp_Object Vreal_last_command; 84 Lisp_Object Vreal_last_command;
86 85
87 /* User-supplied table to translate input characters through. */ 86 /* User-supplied table to translate input characters through. */
88 Lisp_Object Vkeyboard_translate_table; 87 Lisp_Object Vkeyboard_translate_table;
89 88
127 /* Alist of system-specific X windows key symbols. */ 126 /* Alist of system-specific X windows key symbols. */
128 Lisp_Object Vsystem_key_alist; 127 Lisp_Object Vsystem_key_alist;
129 128
130 /* Cache for modify_event_symbol. */ 129 /* Cache for modify_event_symbol. */
131 Lisp_Object system_key_syms; 130 Lisp_Object system_key_syms;
131
132 /* The kind of display: x, w32, ... */
133 Lisp_Object Vwindow_system;
132 134
133 /* Keymap mapping keys to alternative preferred forms. 135 /* Keymap mapping keys to alternative preferred forms.
134 See the DEFVAR for more documentation. */ 136 See the DEFVAR for more documentation. */
135 Lisp_Object Vlocal_function_key_map; 137 Lisp_Object Vlocal_function_key_map;
136 138