diff options
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/coding.c b/src/coding.c index c29713a5c0c..b49070e5e16 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -7970,7 +7970,7 @@ preferred_coding_system (void) | |||
| 7970 | #ifdef emacs | 7970 | #ifdef emacs |
| 7971 | /*** 8. Emacs Lisp library functions ***/ | 7971 | /*** 8. Emacs Lisp library functions ***/ |
| 7972 | 7972 | ||
| 7973 | DEFUE ("coding-system-p", Fcoding_system_p, Scoding_system_p, 1, 1, 0, | 7973 | DEFUN ("coding-system-p", Fcoding_system_p, Scoding_system_p, 1, 1, 0, |
| 7974 | doc: /* Return t if OBJECT is nil or a coding-system. | 7974 | doc: /* Return t if OBJECT is nil or a coding-system. |
| 7975 | See the documentation of `define-coding-system' for information | 7975 | See the documentation of `define-coding-system' for information |
| 7976 | about coding-system objects. */) | 7976 | about coding-system objects. */) |
| @@ -7985,7 +7985,7 @@ about coding-system objects. */) | |||
| 7985 | return Qt; | 7985 | return Qt; |
| 7986 | } | 7986 | } |
| 7987 | 7987 | ||
| 7988 | DEFUE ("read-non-nil-coding-system", Fread_non_nil_coding_system, | 7988 | DEFUN ("read-non-nil-coding-system", Fread_non_nil_coding_system, |
| 7989 | Sread_non_nil_coding_system, 1, 1, 0, | 7989 | Sread_non_nil_coding_system, 1, 1, 0, |
| 7990 | doc: /* Read a coding system from the minibuffer, prompting with string PROMPT. */) | 7990 | doc: /* Read a coding system from the minibuffer, prompting with string PROMPT. */) |
| 7991 | (Lisp_Object prompt) | 7991 | (Lisp_Object prompt) |
| @@ -8000,7 +8000,7 @@ DEFUE ("read-non-nil-coding-system", Fread_non_nil_coding_system, | |||
| 8000 | return (Fintern (val, Qnil)); | 8000 | return (Fintern (val, Qnil)); |
| 8001 | } | 8001 | } |
| 8002 | 8002 | ||
| 8003 | DEFUE ("read-coding-system", Fread_coding_system, Sread_coding_system, 1, 2, 0, | 8003 | DEFUN ("read-coding-system", Fread_coding_system, Sread_coding_system, 1, 2, 0, |
| 8004 | doc: /* Read a coding system from the minibuffer, prompting with string PROMPT. | 8004 | doc: /* Read a coding system from the minibuffer, prompting with string PROMPT. |
| 8005 | If the user enters null input, return second argument DEFAULT-CODING-SYSTEM. | 8005 | If the user enters null input, return second argument DEFAULT-CODING-SYSTEM. |
| 8006 | Ignores case when completing coding systems (all Emacs coding systems | 8006 | Ignores case when completing coding systems (all Emacs coding systems |
| @@ -8020,7 +8020,7 @@ are lower-case). */) | |||
| 8020 | return (SCHARS (val) == 0 ? Qnil : Fintern (val, Qnil)); | 8020 | return (SCHARS (val) == 0 ? Qnil : Fintern (val, Qnil)); |
| 8021 | } | 8021 | } |
| 8022 | 8022 | ||
| 8023 | DEFUE ("check-coding-system", Fcheck_coding_system, Scheck_coding_system, | 8023 | DEFUN ("check-coding-system", Fcheck_coding_system, Scheck_coding_system, |
| 8024 | 1, 1, 0, | 8024 | 1, 1, 0, |
| 8025 | doc: /* Check validity of CODING-SYSTEM. | 8025 | doc: /* Check validity of CODING-SYSTEM. |
| 8026 | If valid, return CODING-SYSTEM, else signal a `coding-system-error' error. | 8026 | If valid, return CODING-SYSTEM, else signal a `coding-system-error' error. |
| @@ -8955,7 +8955,7 @@ code_convert_string_norecord (Lisp_Object string, Lisp_Object coding_system, | |||
| 8955 | } | 8955 | } |
| 8956 | 8956 | ||
| 8957 | 8957 | ||
| 8958 | DEFUE ("decode-coding-string", Fdecode_coding_string, Sdecode_coding_string, | 8958 | DEFUN ("decode-coding-string", Fdecode_coding_string, Sdecode_coding_string, |
| 8959 | 2, 4, 0, | 8959 | 2, 4, 0, |
| 8960 | doc: /* Decode STRING which is encoded in CODING-SYSTEM, and return the result. | 8960 | doc: /* Decode STRING which is encoded in CODING-SYSTEM, and return the result. |
| 8961 | 8961 | ||
| @@ -9229,7 +9229,7 @@ DEFUN ("keyboard-coding-system", | |||
| 9229 | } | 9229 | } |
| 9230 | 9230 | ||
| 9231 | 9231 | ||
| 9232 | DEFUE ("find-operation-coding-system", Ffind_operation_coding_system, | 9232 | DEFUN ("find-operation-coding-system", Ffind_operation_coding_system, |
| 9233 | Sfind_operation_coding_system, 1, MANY, 0, | 9233 | Sfind_operation_coding_system, 1, MANY, 0, |
| 9234 | doc: /* Choose a coding system for an operation based on the target name. | 9234 | doc: /* Choose a coding system for an operation based on the target name. |
| 9235 | The value names a pair of coding systems: (DECODING-SYSTEM . ENCODING-SYSTEM). | 9235 | The value names a pair of coding systems: (DECODING-SYSTEM . ENCODING-SYSTEM). |
| @@ -10072,7 +10072,7 @@ DEFUN ("define-coding-system-alias", Fdefine_coding_system_alias, | |||
| 10072 | return Qnil; | 10072 | return Qnil; |
| 10073 | } | 10073 | } |
| 10074 | 10074 | ||
| 10075 | DEFUE ("coding-system-base", Fcoding_system_base, Scoding_system_base, | 10075 | DEFUN ("coding-system-base", Fcoding_system_base, Scoding_system_base, |
| 10076 | 1, 1, 0, | 10076 | 1, 1, 0, |
| 10077 | doc: /* Return the base of CODING-SYSTEM. | 10077 | doc: /* Return the base of CODING-SYSTEM. |
| 10078 | Any alias or subsidiary coding system is not a base coding system. */) | 10078 | Any alias or subsidiary coding system is not a base coding system. */) |
| @@ -10115,7 +10115,7 @@ DEFUN ("coding-system-aliases", Fcoding_system_aliases, Scoding_system_aliases, | |||
| 10115 | return AREF (spec, 1); | 10115 | return AREF (spec, 1); |
| 10116 | } | 10116 | } |
| 10117 | 10117 | ||
| 10118 | DEFUE ("coding-system-eol-type", Fcoding_system_eol_type, | 10118 | DEFUN ("coding-system-eol-type", Fcoding_system_eol_type, |
| 10119 | Scoding_system_eol_type, 1, 1, 0, | 10119 | Scoding_system_eol_type, 1, 1, 0, |
| 10120 | doc: /* Return eol-type of CODING-SYSTEM. | 10120 | doc: /* Return eol-type of CODING-SYSTEM. |
| 10121 | An eol-type is an integer 0, 1, 2, or a vector of coding systems. | 10121 | An eol-type is an integer 0, 1, 2, or a vector of coding systems. |