diff options
| author | Po Lu | 2023-07-09 08:40:38 +0800 |
|---|---|---|
| committer | Po Lu | 2023-07-09 08:40:38 +0800 |
| commit | f812d92f67a28f49823ff8414bb9bcfb3eb82676 (patch) | |
| tree | 08e7d08347f56cf16be643e83de8de3199bcde7d /src/coding.c | |
| parent | a36207574ac436fd8871639388cc6400069bb9bb (diff) | |
| parent | 9c282faf26eb517532508d466270b7b97d436c70 (diff) | |
| download | emacs-f812d92f67a28f49823ff8414bb9bcfb3eb82676.tar.gz emacs-f812d92f67a28f49823ff8414bb9bcfb3eb82676.zip | |
Merge remote-tracking branch 'origin/master' into feature/android
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 96c3827c326..b7f4120dc8d 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -11473,7 +11473,18 @@ usage: (define-coding-system-internal ...) */) | |||
| 11473 | 11473 | ||
| 11474 | DEFUN ("coding-system-put", Fcoding_system_put, Scoding_system_put, | 11474 | DEFUN ("coding-system-put", Fcoding_system_put, Scoding_system_put, |
| 11475 | 3, 3, 0, | 11475 | 3, 3, 0, |
| 11476 | doc: /* Change value in CODING-SYSTEM's property list PROP to VAL. */) | 11476 | doc: /* Change value of CODING-SYSTEM's property PROP to VAL. |
| 11477 | |||
| 11478 | The following properties, if set by this function, override the values | ||
| 11479 | of the corresponding attributes set by `define-coding-system': | ||
| 11480 | |||
| 11481 | `:mnemonic', `:default-char', `:ascii-compatible-p' | ||
| 11482 | `:decode-translation-table', `:encode-translation-table', | ||
| 11483 | `:post-read-conversion', `:pre-write-conversion' | ||
| 11484 | |||
| 11485 | See `define-coding-system' for the description of these properties. | ||
| 11486 | See `coding-system-get' and `coding-system-plist' for accessing the | ||
| 11487 | property list of a coding-system. */) | ||
| 11477 | (Lisp_Object coding_system, Lisp_Object prop, Lisp_Object val) | 11488 | (Lisp_Object coding_system, Lisp_Object prop, Lisp_Object val) |
| 11478 | { | 11489 | { |
| 11479 | Lisp_Object spec, attrs; | 11490 | Lisp_Object spec, attrs; |