diff options
| author | Paul Eggert | 2011-04-13 22:04:02 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-13 22:04:02 -0700 |
| commit | a7ca3326c4740ed3ed118b794d35d235de49f346 (patch) | |
| tree | 5d38e0eac8e839c84a4ccb6e8a07c3c7858fff54 /src/alloc.c | |
| parent | e87b6180b08c60a256dd8557945321ce2354a3a9 (diff) | |
| download | emacs-a7ca3326c4740ed3ed118b794d35d235de49f346.tar.gz emacs-a7ca3326c4740ed3ed118b794d35d235de49f346.zip | |
Undo the DEFUN->DEFUE change.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/alloc.c b/src/alloc.c index 7803ccdc976..d1d6323f905 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -2177,7 +2177,7 @@ compact_small_strings (void) | |||
| 2177 | } | 2177 | } |
| 2178 | 2178 | ||
| 2179 | 2179 | ||
| 2180 | DEFUE ("make-string", Fmake_string, Smake_string, 2, 2, 0, | 2180 | DEFUN ("make-string", Fmake_string, Smake_string, 2, 2, 0, |
| 2181 | doc: /* Return a newly created string of length LENGTH, with INIT in each element. | 2181 | doc: /* Return a newly created string of length LENGTH, with INIT in each element. |
| 2182 | LENGTH must be an integer. | 2182 | LENGTH must be an integer. |
| 2183 | INIT must be an integer that represents a character. */) | 2183 | INIT must be an integer that represents a character. */) |
| @@ -2225,7 +2225,7 @@ INIT must be an integer that represents a character. */) | |||
| 2225 | } | 2225 | } |
| 2226 | 2226 | ||
| 2227 | 2227 | ||
| 2228 | DEFUE ("make-bool-vector", Fmake_bool_vector, Smake_bool_vector, 2, 2, 0, | 2228 | DEFUN ("make-bool-vector", Fmake_bool_vector, Smake_bool_vector, 2, 2, 0, |
| 2229 | doc: /* Return a new bool-vector of length LENGTH, using INIT for each element. | 2229 | doc: /* Return a new bool-vector of length LENGTH, using INIT for each element. |
| 2230 | LENGTH must be a number. INIT matters only in whether it is t or nil. */) | 2230 | LENGTH must be a number. INIT matters only in whether it is t or nil. */) |
| 2231 | (Lisp_Object length, Lisp_Object init) | 2231 | (Lisp_Object length, Lisp_Object init) |
| @@ -2613,7 +2613,7 @@ free_cons (struct Lisp_Cons *ptr) | |||
| 2613 | cons_free_list = ptr; | 2613 | cons_free_list = ptr; |
| 2614 | } | 2614 | } |
| 2615 | 2615 | ||
| 2616 | DEFUE ("cons", Fcons, Scons, 2, 2, 0, | 2616 | DEFUN ("cons", Fcons, Scons, 2, 2, 0, |
| 2617 | doc: /* Create a new cons, give it CAR and CDR as components, and return it. */) | 2617 | doc: /* Create a new cons, give it CAR and CDR as components, and return it. */) |
| 2618 | (Lisp_Object car, Lisp_Object cdr) | 2618 | (Lisp_Object car, Lisp_Object cdr) |
| 2619 | { | 2619 | { |
| @@ -2706,7 +2706,7 @@ list5 (Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3, Lisp_Object arg4, L | |||
| 2706 | } | 2706 | } |
| 2707 | 2707 | ||
| 2708 | 2708 | ||
| 2709 | DEFUE ("list", Flist, Slist, 0, MANY, 0, | 2709 | DEFUN ("list", Flist, Slist, 0, MANY, 0, |
| 2710 | doc: /* Return a newly created list with specified arguments as elements. | 2710 | doc: /* Return a newly created list with specified arguments as elements. |
| 2711 | Any number of arguments, even zero arguments, are allowed. | 2711 | Any number of arguments, even zero arguments, are allowed. |
| 2712 | usage: (list &rest OBJECTS) */) | 2712 | usage: (list &rest OBJECTS) */) |
| @@ -2724,7 +2724,7 @@ usage: (list &rest OBJECTS) */) | |||
| 2724 | } | 2724 | } |
| 2725 | 2725 | ||
| 2726 | 2726 | ||
| 2727 | DEFUE ("make-list", Fmake_list, Smake_list, 2, 2, 0, | 2727 | DEFUN ("make-list", Fmake_list, Smake_list, 2, 2, 0, |
| 2728 | doc: /* Return a newly created list of length LENGTH, with each element being INIT. */) | 2728 | doc: /* Return a newly created list of length LENGTH, with each element being INIT. */) |
| 2729 | (register Lisp_Object length, Lisp_Object init) | 2729 | (register Lisp_Object length, Lisp_Object init) |
| 2730 | { | 2730 | { |
| @@ -2900,7 +2900,7 @@ allocate_process (void) | |||
| 2900 | } | 2900 | } |
| 2901 | 2901 | ||
| 2902 | 2902 | ||
| 2903 | DEFUE ("make-vector", Fmake_vector, Smake_vector, 2, 2, 0, | 2903 | DEFUN ("make-vector", Fmake_vector, Smake_vector, 2, 2, 0, |
| 2904 | doc: /* Return a newly created vector of length LENGTH, with each element being INIT. | 2904 | doc: /* Return a newly created vector of length LENGTH, with each element being INIT. |
| 2905 | See also the function `vector'. */) | 2905 | See also the function `vector'. */) |
| 2906 | (register Lisp_Object length, Lisp_Object init) | 2906 | (register Lisp_Object length, Lisp_Object init) |
| @@ -2922,7 +2922,7 @@ See also the function `vector'. */) | |||
| 2922 | } | 2922 | } |
| 2923 | 2923 | ||
| 2924 | 2924 | ||
| 2925 | DEFUE ("vector", Fvector, Svector, 0, MANY, 0, | 2925 | DEFUN ("vector", Fvector, Svector, 0, MANY, 0, |
| 2926 | doc: /* Return a newly created vector with specified arguments as elements. | 2926 | doc: /* Return a newly created vector with specified arguments as elements. |
| 2927 | Any number of arguments, even zero arguments, are allowed. | 2927 | Any number of arguments, even zero arguments, are allowed. |
| 2928 | usage: (vector &rest OBJECTS) */) | 2928 | usage: (vector &rest OBJECTS) */) |
| @@ -2941,7 +2941,7 @@ usage: (vector &rest OBJECTS) */) | |||
| 2941 | } | 2941 | } |
| 2942 | 2942 | ||
| 2943 | 2943 | ||
| 2944 | DEFUE ("make-byte-code", Fmake_byte_code, Smake_byte_code, 4, MANY, 0, | 2944 | DEFUN ("make-byte-code", Fmake_byte_code, Smake_byte_code, 4, MANY, 0, |
| 2945 | doc: /* Create a byte-code object with specified arguments as elements. | 2945 | doc: /* Create a byte-code object with specified arguments as elements. |
| 2946 | The arguments should be the ARGLIST, bytecode-string BYTE-CODE, constant | 2946 | The arguments should be the ARGLIST, bytecode-string BYTE-CODE, constant |
| 2947 | vector CONSTANTS, maximum stack size DEPTH, (optional) DOCSTRING, | 2947 | vector CONSTANTS, maximum stack size DEPTH, (optional) DOCSTRING, |
| @@ -3036,7 +3036,7 @@ init_symbol (void) | |||
| 3036 | } | 3036 | } |
| 3037 | 3037 | ||
| 3038 | 3038 | ||
| 3039 | DEFUE ("make-symbol", Fmake_symbol, Smake_symbol, 1, 1, 0, | 3039 | DEFUN ("make-symbol", Fmake_symbol, Smake_symbol, 1, 1, 0, |
| 3040 | doc: /* Return a newly allocated uninterned symbol whose name is NAME. | 3040 | doc: /* Return a newly allocated uninterned symbol whose name is NAME. |
| 3041 | Its value and function definition are void, and its property list is nil. */) | 3041 | Its value and function definition are void, and its property list is nil. */) |
| 3042 | (Lisp_Object name) | 3042 | (Lisp_Object name) |
| @@ -3199,7 +3199,7 @@ make_save_value (void *pointer, int integer) | |||
| 3199 | return val; | 3199 | return val; |
| 3200 | } | 3200 | } |
| 3201 | 3201 | ||
| 3202 | DEFUE ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0, | 3202 | DEFUN ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0, |
| 3203 | doc: /* Return a newly allocated marker which does not point at any place. */) | 3203 | doc: /* Return a newly allocated marker which does not point at any place. */) |
| 3204 | (void) | 3204 | (void) |
| 3205 | { | 3205 | { |
| @@ -3928,7 +3928,7 @@ static int max_live, max_zombies; | |||
| 3928 | 3928 | ||
| 3929 | static double avg_live; | 3929 | static double avg_live; |
| 3930 | 3930 | ||
| 3931 | DEFUE ("gc-status", Fgc_status, Sgc_status, 0, 0, "", | 3931 | DEFUN ("gc-status", Fgc_status, Sgc_status, 0, 0, "", |
| 3932 | doc: /* Show information about live and zombie objects. */) | 3932 | doc: /* Show information about live and zombie objects. */) |
| 3933 | (void) | 3933 | (void) |
| 3934 | { | 3934 | { |
| @@ -4743,7 +4743,7 @@ make_pure_vector (EMACS_INT len) | |||
| 4743 | } | 4743 | } |
| 4744 | 4744 | ||
| 4745 | 4745 | ||
| 4746 | DEFUE ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0, | 4746 | DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0, |
| 4747 | doc: /* Make a copy of object OBJ in pure storage. | 4747 | doc: /* Make a copy of object OBJ in pure storage. |
| 4748 | Recursively copies contents of vectors and cons cells. | 4748 | Recursively copies contents of vectors and cons cells. |
| 4749 | Does not copy symbols. Copies strings without text properties. */) | 4749 | Does not copy symbols. Copies strings without text properties. */) |
| @@ -4837,7 +4837,7 @@ inhibit_garbage_collection (void) | |||
| 4837 | } | 4837 | } |
| 4838 | 4838 | ||
| 4839 | 4839 | ||
| 4840 | DEFUE ("garbage-collect", Fgarbage_collect, Sgarbage_collect, 0, 0, "", | 4840 | DEFUN ("garbage-collect", Fgarbage_collect, Sgarbage_collect, 0, 0, "", |
| 4841 | doc: /* Reclaim storage for Lisp objects no longer needed. | 4841 | doc: /* Reclaim storage for Lisp objects no longer needed. |
| 4842 | Garbage collection happens automatically if you cons more than | 4842 | Garbage collection happens automatically if you cons more than |
| 4843 | `gc-cons-threshold' bytes of Lisp data since previous garbage collection. | 4843 | `gc-cons-threshold' bytes of Lisp data since previous garbage collection. |