aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c21
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
5904When nil, the input method will be disabled and an ordinary keyboard 5904If nil, the input method will be disabled and an ordinary keyboard
5905will be displayed in its place. 5905will be displayed in its place.
5906 5906
5907When the symbol `action', the input method will insert text directly, but 5907If the value is the symbol `action', the input method will insert text
5908will send `return' key events instead of inserting new line characters. 5908directly, but will send `return' key events instead of inserting new
5909Any other value means that the input method will insert text directly. 5909line characters.
5910
5911If the value is the symbol `password', an input method capable of ASCII
5912input will be enabled, and will not save the entered text where it will
5913be retrieved for text suggestions or other features not suitable for
5914handling sensitive information, in addition to reporting `return' as
5915when `action'.
5910 5916
5911When the symbol `password', an input method capable of ASCII input will 5917Any other value means that the input method will insert text directly.
5912be enabled, and will not save entered text where it will be retrieved
5913for text suggestions or other features not suited to handling sensitive
5914information, in addition to reporting `return' as when `action'.
5915 5918
5916If you need to make non-buffer local changes to this variable, use 5919If 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
5919This variable does not take immediate effect when set; rather, it 5922This variable does not take immediate effect when set; rather, it
5920takes effect upon the next redisplay after the selected window or 5923takes effect upon the next redisplay after the selected window or
5921buffer changes. */); 5924its 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.