diff options
| author | Eli Zaretskii | 2023-07-07 10:29:55 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2023-07-07 10:29:55 +0300 |
| commit | f8a918c9778f4335d547076622b138679d76a9d7 (patch) | |
| tree | b4891815a7d19a45b9dfa3ab58328287cdec3743 /src/coding.c | |
| parent | 40f84e906f67eeefd51076747396aaa1354a8dd6 (diff) | |
| download | emacs-f8a918c9778f4335d547076622b138679d76a9d7.tar.gz emacs-f8a918c9778f4335d547076622b138679d76a9d7.zip | |
; * src/coding.c (Fcoding_system_put): Improve doc string.
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 49dcd8634f3..544f98dcdab 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -11447,7 +11447,18 @@ usage: (define-coding-system-internal ...) */) | |||
| 11447 | 11447 | ||
| 11448 | DEFUN ("coding-system-put", Fcoding_system_put, Scoding_system_put, | 11448 | DEFUN ("coding-system-put", Fcoding_system_put, Scoding_system_put, |
| 11449 | 3, 3, 0, | 11449 | 3, 3, 0, |
| 11450 | doc: /* Change value in CODING-SYSTEM's property list PROP to VAL. */) | 11450 | doc: /* Change value of CODING-SYSTEM's property PROP to VAL. |
| 11451 | |||
| 11452 | The following properties, if set by this function, override the values | ||
| 11453 | of the corresponding attributes set by `define-coding-system': | ||
| 11454 | |||
| 11455 | `:mnemonic', `:default-char', `:ascii-compatible-p' | ||
| 11456 | `:decode-translation-table', `:encode-translation-table', | ||
| 11457 | `:post-read-conversion', `:pre-write-conversion' | ||
| 11458 | |||
| 11459 | See `define-coding-system' for the description of these properties. | ||
| 11460 | See `coding-system-get' and `coding-system-plist' for accessing the | ||
| 11461 | property list of a coding-system. */) | ||
| 11451 | (Lisp_Object coding_system, Lisp_Object prop, Lisp_Object val) | 11462 | (Lisp_Object coding_system, Lisp_Object prop, Lisp_Object val) |
| 11452 | { | 11463 | { |
| 11453 | Lisp_Object spec, attrs; | 11464 | Lisp_Object spec, attrs; |