diff options
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/src/buffer.c b/src/buffer.c index af4aa583c96..393b8c5340a 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5862,15 +5862,19 @@ Use Custom to set this variable and update the display. */); | |||
| 5862 | DEFVAR_PER_BUFFER ("text-conversion-style", &BVAR (current_buffer, | 5862 | DEFVAR_PER_BUFFER ("text-conversion-style", &BVAR (current_buffer, |
| 5863 | text_conversion_style), | 5863 | text_conversion_style), |
| 5864 | Qnil, | 5864 | Qnil, |
| 5865 | "How the on screen keyboard's input method should insert in this buffer.\n\ | 5865 | doc: /* How the on screen keyboard's input method should insert in this buffer. |
| 5866 | When nil, the input method will be disabled and an ordinary keyboard\n\ | 5866 | When nil, the input method will be disabled and an ordinary keyboard |
| 5867 | will be displayed in its place.\n\ | 5867 | will be displayed in its place. |
| 5868 | When the symbol `action', the input method will insert text directly, but\n\ | 5868 | When the symbol `action', the input method will insert text directly, but |
| 5869 | will send `return' key events instead of inserting new line characters.\n\ | 5869 | will send `return' key events instead of inserting new line characters. |
| 5870 | Any other value means that the input method will insert text directly.\n\ | 5870 | Any other value means that the input method will insert text directly. |
| 5871 | \n\ | 5871 | |
| 5872 | This variable does not take immediate effect when set; rather, it takes\n\ | 5872 | If you need to make non-buffer local changes to this variable, use |
| 5873 | effect upon the next redisplay after the selected window or buffer changes."); | 5873 | `overriding-text-conversion-style', which see. |
| 5874 | |||
| 5875 | This variable does not take immediate effect when set; rather, it | ||
| 5876 | takes effect upon the next redisplay after the selected window or | ||
| 5877 | buffer changes. */); | ||
| 5874 | 5878 | ||
| 5875 | DEFVAR_LISP ("kill-buffer-query-functions", Vkill_buffer_query_functions, | 5879 | DEFVAR_LISP ("kill-buffer-query-functions", Vkill_buffer_query_functions, |
| 5876 | doc: /* List of functions called with no args to query before killing a buffer. | 5880 | doc: /* List of functions called with no args to query before killing a buffer. |