comparison src/keyboard.c @ 23857:5ad15fde58a9

Doc fixes.
author Karl Heuer <kwzh@gnu.org>
date Thu, 10 Dec 1998 04:25:07 +0000
parents 594b3116e1b0
children bf7a9485714a
comparison
equal deleted inserted replaced
23856:ffe70215c560 23857:5ad15fde58a9
9140 These events are processed after `unread-command-events', but\n\ 9140 These events are processed after `unread-command-events', but\n\
9141 before actual keyboard input."); 9141 before actual keyboard input.");
9142 Vunread_input_method_events = Qnil; 9142 Vunread_input_method_events = Qnil;
9143 9143
9144 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char, 9144 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
9145 "Meta-prefix character code. Meta-foo as command input\n\ 9145 "Meta-prefix character code.\n\
9146 turns into this character followed by foo."); 9146 Meta-foo as command input turns into this character followed by foo.");
9147 XSETINT (meta_prefix_char, 033); 9147 XSETINT (meta_prefix_char, 033);
9148 9148
9149 DEFVAR_KBOARD ("last-command", Vlast_command, 9149 DEFVAR_KBOARD ("last-command", Vlast_command,
9150 "The last command executed. Normally a symbol with a function definition,\n\ 9150 "The last command executed.\n\
9151 but can be whatever was found in the keymap, or whatever the variable\n\ 9151 Normally a symbol with a function definition, but can be whatever was found\n\
9152 `this-command' was set to by that command.\n\ 9152 in the keymap, or whatever the variable `this-command' was set to by that\n\
9153 command.\n\
9153 \n\ 9154 \n\
9154 The value `mode-exit' is special; it means that the previous command\n\ 9155 The value `mode-exit' is special; it means that the previous command\n\
9155 read an event that told it to exit, and it did so and unread that event.\n\ 9156 read an event that told it to exit, and it did so and unread that event.\n\
9156 In other words, the present command is the event that made the previous\n\ 9157 In other words, the present command is the event that made the previous\n\
9157 command exit.\n\ 9158 command exit.\n\
9258 character codes N and up are untranslated.\n\ 9259 character codes N and up are untranslated.\n\
9259 In a vector or a char-table, an element which is nil means \"no translation\"."); 9260 In a vector or a char-table, an element which is nil means \"no translation\".");
9260 Vkeyboard_translate_table = Qnil; 9261 Vkeyboard_translate_table = Qnil;
9261 9262
9262 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend, 9263 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
9263 "Non-nil means to always spawn a subshell instead of suspending,\n\ 9264 "Non-nil means to always spawn a subshell instead of suspending.\n\
9264 even if the operating system has support for stopping a process."); 9265 \(Even if the operating system has support for stopping a process.\)");
9265 cannot_suspend = 0; 9266 cannot_suspend = 0;
9266 9267
9267 DEFVAR_BOOL ("menu-prompting", &menu_prompting, 9268 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
9268 "Non-nil means prompt with menus when appropriate.\n\ 9269 "Non-nil means prompt with menus when appropriate.\n\
9269 This is done when reading from a keymap that has a prompt string,\n\ 9270 This is done when reading from a keymap that has a prompt string,\n\