diff options
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/src/buffer.c b/src/buffer.c index 9f954e1aba9..291c7d3f911 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5901,24 +5901,27 @@ Use Custom to set this variable and update the display. */); | |||
| 5901 | Qnil, | 5901 | Qnil, |
| 5902 | doc: /* How the on screen keyboard's input method should insert in this buffer. | 5902 | doc: /* How the on screen keyboard's input method should insert in this buffer. |
| 5903 | 5903 | ||
| 5904 | When nil, the input method will be disabled and an ordinary keyboard | 5904 | If nil, the input method will be disabled and an ordinary keyboard |
| 5905 | will be displayed in its place. | 5905 | will be displayed in its place. |
| 5906 | 5906 | ||
| 5907 | When the symbol `action', the input method will insert text directly, but | 5907 | If the value is the symbol `action', the input method will insert text |
| 5908 | will send `return' key events instead of inserting new line characters. | 5908 | directly, but will send `return' key events instead of inserting new |
| 5909 | Any other value means that the input method will insert text directly. | 5909 | line characters. |
| 5910 | |||
| 5911 | If the value is the symbol `password', an input method capable of ASCII | ||
| 5912 | input will be enabled, and will not save the entered text where it will | ||
| 5913 | be retrieved for text suggestions or other features not suitable for | ||
| 5914 | handling sensitive information, in addition to reporting `return' as | ||
| 5915 | when `action'. | ||
| 5910 | 5916 | ||
| 5911 | When the symbol `password', an input method capable of ASCII input will | 5917 | Any other value means that the input method will insert text directly. |
| 5912 | be enabled, and will not save entered text where it will be retrieved | ||
| 5913 | for text suggestions or other features not suited to handling sensitive | ||
| 5914 | information, in addition to reporting `return' as when `action'. | ||
| 5915 | 5918 | ||
| 5916 | If you need to make non-buffer local changes to this variable, use | 5919 | If you need to make non-buffer local changes to this variable, use |
| 5917 | `overriding-text-conversion-style', which see. | 5920 | `overriding-text-conversion-style', which see. |
| 5918 | 5921 | ||
| 5919 | This variable does not take immediate effect when set; rather, it | 5922 | This variable does not take immediate effect when set; rather, it |
| 5920 | takes effect upon the next redisplay after the selected window or | 5923 | takes effect upon the next redisplay after the selected window or |
| 5921 | buffer changes. */); | 5924 | its buffer changes. */); |
| 5922 | 5925 | ||
| 5923 | DEFVAR_LISP ("kill-buffer-query-functions", Vkill_buffer_query_functions, | 5926 | DEFVAR_LISP ("kill-buffer-query-functions", Vkill_buffer_query_functions, |
| 5924 | doc: /* List of functions called with no args to query before killing a buffer. | 5927 | doc: /* List of functions called with no args to query before killing a buffer. |