aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorSean Whitton2025-03-12 10:09:09 +0800
committerSean Whitton2025-03-12 10:09:09 +0800
commit99852fb867e4d7d2090cbb82ff12d86d2a6ed9cc (patch)
tree7d597de0644e89ee082f7d4c324a250d19cf4e88 /src/coding.c
parent85b147d32100d8da89366a19ab77f996fe011043 (diff)
parent894b0e3a2fe064690eecda546f3b577886638140 (diff)
downloademacs-99852fb867e4d7d2090cbb82ff12d86d2a6ed9cc.tar.gz
emacs-99852fb867e4d7d2090cbb82ff12d86d2a6ed9cc.zip
Merge from origin/emacs-30
894b0e3a2fe ; Adapt comment in tramp.el cc87717fa07 Add keyword placeholder to tramp.el 7d0d61d8549 Rewrite ERT manual introduction b2f124f2a88 ; cperl-mode.el: Don't misinterpret exec_fcn as keyword exec 59d1aac49df Document return values of the various read-* functions
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c
index 4f7cf23e96e..b0bd5d3a9ab 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -8625,7 +8625,8 @@ about coding-system objects. */)
8625 8625
8626DEFUN ("read-non-nil-coding-system", Fread_non_nil_coding_system, 8626DEFUN ("read-non-nil-coding-system", Fread_non_nil_coding_system,
8627 Sread_non_nil_coding_system, 1, 1, 0, 8627 Sread_non_nil_coding_system, 1, 1, 0,
8628 doc: /* Read a coding system from the minibuffer, prompting with string PROMPT. */) 8628 doc: /* Read a coding system from the minibuffer, prompting with string PROMPT.
8629Return the symbol of the coding-system. */)
8629 (Lisp_Object prompt) 8630 (Lisp_Object prompt)
8630{ 8631{
8631 Lisp_Object val; 8632 Lisp_Object val;
@@ -8641,6 +8642,8 @@ DEFUN ("read-non-nil-coding-system", Fread_non_nil_coding_system,
8641DEFUN ("read-coding-system", Fread_coding_system, Sread_coding_system, 1, 2, 0, 8642DEFUN ("read-coding-system", Fread_coding_system, Sread_coding_system, 1, 2, 0,
8642 doc: /* Read a coding system from the minibuffer, prompting with string PROMPT. 8643 doc: /* Read a coding system from the minibuffer, prompting with string PROMPT.
8643If the user enters null input, return second argument DEFAULT-CODING-SYSTEM. 8644If the user enters null input, return second argument DEFAULT-CODING-SYSTEM.
8645Return the coding-system's symbol, or nil if both the user input and
8646DEFAULT-CODING-SYSTEM are empty or null.
8644Ignores case when completing coding systems (all Emacs coding systems 8647Ignores case when completing coding systems (all Emacs coding systems
8645are lower-case). */) 8648are lower-case). */)
8646 (Lisp_Object prompt, Lisp_Object default_coding_system) 8649 (Lisp_Object prompt, Lisp_Object default_coding_system)