diff options
| author | Eli Zaretskii | 2023-07-08 05:46:10 -0400 |
|---|---|---|
| committer | Eli Zaretskii | 2023-07-08 05:46:10 -0400 |
| commit | 375dac936fcca902874ecfd1c57b713581641725 (patch) | |
| tree | 14f0666d31d71755346b9a09209fb21d5ddf44a2 /src/coding.c | |
| parent | aad13e61dbf949ca6dea1ff492baca82f40a5738 (diff) | |
| parent | 600b90ed56854e8460038ca6b8aaa1feae4ab2c9 (diff) | |
| download | emacs-375dac936fcca902874ecfd1c57b713581641725.tar.gz emacs-375dac936fcca902874ecfd1c57b713581641725.zip | |
Merge from origin/emacs-29
600b90ed568 Mark failing icalendar test as unstable (bug#56241)
f8a918c9778 ; * src/coding.c (Fcoding_system_put): Improve doc string.
40f84e906f6 ; * doc/lispref/keymaps.texi (Key Binding Commands): Fix ...
502a7800319 ; Improve documentation of 'vertical-motion' in ELisp manual
0d90873fa41 ; * src/indent.c (Fvertical_motion): Doc fix.
9b38773a20b ; * lisp/dired.el (dired-no-confirm): Doc fix. (Bug#64493)
a30ebe7a556 ; Improve documentation of key-binding commands
c3fefb2b3ae Improve natnump shortdoc
244d4c837ab correct info documentation of benchmark-call
67def1f5502 * lisp/progmodes/grep.el (rgrep): Fix docstring.
8da2091362d ; Fix documentation of minibuffer-completion commands
aa030698cef ; Fix typos in documented names of keymap-* functions
a9b46bb25df Include a help-echo for flymake's modeline counters
37ed3d15f38 Avoid errors in completion due to 'completion-regexp-list'
15ff8761777 ; * lisp/register.el (register-val-describe): Doc fix.
fe7b909c16c ; Fix two typos in recent changes in the manual
7a74b8c3277 C Mode: Don't fontify foo globally as type due to "struct...
823bf6bdb1a * lisp/rect.el (rectangle--duplicate-right): Fix rectangl...
e339d0080d3 ; * test/lisp/misc-tests.el (ert): require misc to avoid ...
# Conflicts:
# lisp/rect.el
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index f014749c4ea..899f8fc7b4d 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -11452,7 +11452,18 @@ usage: (define-coding-system-internal ...) */) | |||
| 11452 | 11452 | ||
| 11453 | DEFUN ("coding-system-put", Fcoding_system_put, Scoding_system_put, | 11453 | DEFUN ("coding-system-put", Fcoding_system_put, Scoding_system_put, |
| 11454 | 3, 3, 0, | 11454 | 3, 3, 0, |
| 11455 | doc: /* Change value in CODING-SYSTEM's property list PROP to VAL. */) | 11455 | doc: /* Change value of CODING-SYSTEM's property PROP to VAL. |
| 11456 | |||
| 11457 | The following properties, if set by this function, override the values | ||
| 11458 | of the corresponding attributes set by `define-coding-system': | ||
| 11459 | |||
| 11460 | `:mnemonic', `:default-char', `:ascii-compatible-p' | ||
| 11461 | `:decode-translation-table', `:encode-translation-table', | ||
| 11462 | `:post-read-conversion', `:pre-write-conversion' | ||
| 11463 | |||
| 11464 | See `define-coding-system' for the description of these properties. | ||
| 11465 | See `coding-system-get' and `coding-system-plist' for accessing the | ||
| 11466 | property list of a coding-system. */) | ||
| 11456 | (Lisp_Object coding_system, Lisp_Object prop, Lisp_Object val) | 11467 | (Lisp_Object coding_system, Lisp_Object prop, Lisp_Object val) |
| 11457 | { | 11468 | { |
| 11458 | Lisp_Object spec, attrs; | 11469 | Lisp_Object spec, attrs; |