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 711ada59c85..13fcb7fb8a5 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -7991,7 +7991,7 @@ preferred_coding_system (void) | |||
| 7991 | #ifdef emacs | 7991 | #ifdef emacs |
| 7992 | /*** 8. Emacs Lisp library functions ***/ | 7992 | /*** 8. Emacs Lisp library functions ***/ |
| 7993 | 7993 | ||
| 7994 | DEFUN ("coding-system-p", Fcoding_system_p, Scoding_system_p, 1, 1, 0, | 7994 | DEFUE ("coding-system-p", Fcoding_system_p, Scoding_system_p, 1, 1, 0, |
| 7995 | doc: /* Return t if OBJECT is nil or a coding-system. | 7995 | doc: /* Return t if OBJECT is nil or a coding-system. |
| 7996 | See the documentation of `define-coding-system' for information | 7996 | See the documentation of `define-coding-system' for information |
| 7997 | about coding-system objects. */) | 7997 | about coding-system objects. */) |
| @@ -8006,7 +8006,7 @@ about coding-system objects. */) | |||
| 8006 | return Qt; | 8006 | return Qt; |
| 8007 | } | 8007 | } |
| 8008 | 8008 | ||
| 8009 | DEFUN ("read-non-nil-coding-system", Fread_non_nil_coding_system, | 8009 | DEFUE ("read-non-nil-coding-system", Fread_non_nil_coding_system, |
| 8010 | Sread_non_nil_coding_system, 1, 1, 0, | 8010 | Sread_non_nil_coding_system, 1, 1, 0, |
| 8011 | doc: /* Read a coding system from the minibuffer, prompting with string PROMPT. */) | 8011 | doc: /* Read a coding system from the minibuffer, prompting with string PROMPT. */) |
| 8012 | (Lisp_Object prompt) | 8012 | (Lisp_Object prompt) |
| @@ -8021,7 +8021,7 @@ DEFUN ("read-non-nil-coding-system", Fread_non_nil_coding_system, | |||
| 8021 | return (Fintern (val, Qnil)); | 8021 | return (Fintern (val, Qnil)); |
| 8022 | } | 8022 | } |
| 8023 | 8023 | ||
| 8024 | DEFUN ("read-coding-system", Fread_coding_system, Sread_coding_system, 1, 2, 0, | 8024 | DEFUE ("read-coding-system", Fread_coding_system, Sread_coding_system, 1, 2, 0, |
| 8025 | doc: /* Read a coding system from the minibuffer, prompting with string PROMPT. | 8025 | doc: /* Read a coding system from the minibuffer, prompting with string PROMPT. |
| 8026 | If the user enters null input, return second argument DEFAULT-CODING-SYSTEM. | 8026 | If the user enters null input, return second argument DEFAULT-CODING-SYSTEM. |
| 8027 | Ignores case when completing coding systems (all Emacs coding systems | 8027 | Ignores case when completing coding systems (all Emacs coding systems |
| @@ -8041,7 +8041,7 @@ are lower-case). */) | |||
| 8041 | return (SCHARS (val) == 0 ? Qnil : Fintern (val, Qnil)); | 8041 | return (SCHARS (val) == 0 ? Qnil : Fintern (val, Qnil)); |
| 8042 | } | 8042 | } |
| 8043 | 8043 | ||
| 8044 | DEFUN ("check-coding-system", Fcheck_coding_system, Scheck_coding_system, | 8044 | DEFUE ("check-coding-system", Fcheck_coding_system, Scheck_coding_system, |
| 8045 | 1, 1, 0, | 8045 | 1, 1, 0, |
| 8046 | doc: /* Check validity of CODING-SYSTEM. | 8046 | doc: /* Check validity of CODING-SYSTEM. |
| 8047 | If valid, return CODING-SYSTEM, else signal a `coding-system-error' error. | 8047 | If valid, return CODING-SYSTEM, else signal a `coding-system-error' error. |
| @@ -8976,7 +8976,7 @@ code_convert_string_norecord (Lisp_Object string, Lisp_Object coding_system, | |||
| 8976 | } | 8976 | } |
| 8977 | 8977 | ||
| 8978 | 8978 | ||
| 8979 | DEFUN ("decode-coding-string", Fdecode_coding_string, Sdecode_coding_string, | 8979 | DEFUE ("decode-coding-string", Fdecode_coding_string, Sdecode_coding_string, |
| 8980 | 2, 4, 0, | 8980 | 2, 4, 0, |
| 8981 | doc: /* Decode STRING which is encoded in CODING-SYSTEM, and return the result. | 8981 | doc: /* Decode STRING which is encoded in CODING-SYSTEM, and return the result. |
| 8982 | 8982 | ||
| @@ -9250,7 +9250,7 @@ DEFUN ("keyboard-coding-system", | |||
| 9250 | } | 9250 | } |
| 9251 | 9251 | ||
| 9252 | 9252 | ||
| 9253 | DEFUN ("find-operation-coding-system", Ffind_operation_coding_system, | 9253 | DEFUE ("find-operation-coding-system", Ffind_operation_coding_system, |
| 9254 | Sfind_operation_coding_system, 1, MANY, 0, | 9254 | Sfind_operation_coding_system, 1, MANY, 0, |
| 9255 | doc: /* Choose a coding system for an operation based on the target name. | 9255 | doc: /* Choose a coding system for an operation based on the target name. |
| 9256 | The value names a pair of coding systems: (DECODING-SYSTEM . ENCODING-SYSTEM). | 9256 | The value names a pair of coding systems: (DECODING-SYSTEM . ENCODING-SYSTEM). |
| @@ -10093,7 +10093,7 @@ DEFUN ("define-coding-system-alias", Fdefine_coding_system_alias, | |||
| 10093 | return Qnil; | 10093 | return Qnil; |
| 10094 | } | 10094 | } |
| 10095 | 10095 | ||
| 10096 | DEFUN ("coding-system-base", Fcoding_system_base, Scoding_system_base, | 10096 | DEFUE ("coding-system-base", Fcoding_system_base, Scoding_system_base, |
| 10097 | 1, 1, 0, | 10097 | 1, 1, 0, |
| 10098 | doc: /* Return the base of CODING-SYSTEM. | 10098 | doc: /* Return the base of CODING-SYSTEM. |
| 10099 | Any alias or subsidiary coding system is not a base coding system. */) | 10099 | Any alias or subsidiary coding system is not a base coding system. */) |
| @@ -10136,7 +10136,7 @@ DEFUN ("coding-system-aliases", Fcoding_system_aliases, Scoding_system_aliases, | |||
| 10136 | return AREF (spec, 1); | 10136 | return AREF (spec, 1); |
| 10137 | } | 10137 | } |
| 10138 | 10138 | ||
| 10139 | DEFUN ("coding-system-eol-type", Fcoding_system_eol_type, | 10139 | DEFUE ("coding-system-eol-type", Fcoding_system_eol_type, |
| 10140 | Scoding_system_eol_type, 1, 1, 0, | 10140 | Scoding_system_eol_type, 1, 1, 0, |
| 10141 | doc: /* Return eol-type of CODING-SYSTEM. | 10141 | doc: /* Return eol-type of CODING-SYSTEM. |
| 10142 | An eol-type is an integer 0, 1, 2, or a vector of coding systems. | 10142 | An eol-type is an integer 0, 1, 2, or a vector of coding systems. |