diff options
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; |