aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorPaul Eggert2011-04-13 22:04:02 -0700
committerPaul Eggert2011-04-13 22:04:02 -0700
commita7ca3326c4740ed3ed118b794d35d235de49f346 (patch)
tree5d38e0eac8e839c84a4ccb6e8a07c3c7858fff54 /src/coding.c
parente87b6180b08c60a256dd8557945321ce2354a3a9 (diff)
downloademacs-a7ca3326c4740ed3ed118b794d35d235de49f346.tar.gz
emacs-a7ca3326c4740ed3ed118b794d35d235de49f346.zip
Undo the DEFUN->DEFUE change.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c16
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
7973DEFUE ("coding-system-p", Fcoding_system_p, Scoding_system_p, 1, 1, 0, 7973DEFUN ("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.
7975See the documentation of `define-coding-system' for information 7975See the documentation of `define-coding-system' for information
7976about coding-system objects. */) 7976about coding-system objects. */)
@@ -7985,7 +7985,7 @@ about coding-system objects. */)
7985 return Qt; 7985 return Qt;
7986} 7986}
7987 7987
7988DEFUE ("read-non-nil-coding-system", Fread_non_nil_coding_system, 7988DEFUN ("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
8003DEFUE ("read-coding-system", Fread_coding_system, Sread_coding_system, 1, 2, 0, 8003DEFUN ("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.
8005If the user enters null input, return second argument DEFAULT-CODING-SYSTEM. 8005If the user enters null input, return second argument DEFAULT-CODING-SYSTEM.
8006Ignores case when completing coding systems (all Emacs coding systems 8006Ignores 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
8023DEFUE ("check-coding-system", Fcheck_coding_system, Scheck_coding_system, 8023DEFUN ("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.
8026If valid, return CODING-SYSTEM, else signal a `coding-system-error' error. 8026If 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
8958DEFUE ("decode-coding-string", Fdecode_coding_string, Sdecode_coding_string, 8958DEFUN ("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
9232DEFUE ("find-operation-coding-system", Ffind_operation_coding_system, 9232DEFUN ("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.
9235The value names a pair of coding systems: (DECODING-SYSTEM . ENCODING-SYSTEM). 9235The 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
10075DEFUE ("coding-system-base", Fcoding_system_base, Scoding_system_base, 10075DEFUN ("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.
10078Any alias or subsidiary coding system is not a base coding system. */) 10078Any 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
10118DEFUE ("coding-system-eol-type", Fcoding_system_eol_type, 10118DEFUN ("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.
10121An eol-type is an integer 0, 1, 2, or a vector of coding systems. 10121An eol-type is an integer 0, 1, 2, or a vector of coding systems.