aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.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/alloc.c
parente87b6180b08c60a256dd8557945321ce2354a3a9 (diff)
downloademacs-a7ca3326c4740ed3ed118b794d35d235de49f346.tar.gz
emacs-a7ca3326c4740ed3ed118b794d35d235de49f346.zip
Undo the DEFUN->DEFUE change.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c26
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
2180DEFUE ("make-string", Fmake_string, Smake_string, 2, 2, 0, 2180DEFUN ("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.
2182LENGTH must be an integer. 2182LENGTH must be an integer.
2183INIT must be an integer that represents a character. */) 2183INIT 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
2228DEFUE ("make-bool-vector", Fmake_bool_vector, Smake_bool_vector, 2, 2, 0, 2228DEFUN ("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.
2230LENGTH must be a number. INIT matters only in whether it is t or nil. */) 2230LENGTH 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
2616DEFUE ("cons", Fcons, Scons, 2, 2, 0, 2616DEFUN ("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
2709DEFUE ("list", Flist, Slist, 0, MANY, 0, 2709DEFUN ("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.
2711Any number of arguments, even zero arguments, are allowed. 2711Any number of arguments, even zero arguments, are allowed.
2712usage: (list &rest OBJECTS) */) 2712usage: (list &rest OBJECTS) */)
@@ -2724,7 +2724,7 @@ usage: (list &rest OBJECTS) */)
2724} 2724}
2725 2725
2726 2726
2727DEFUE ("make-list", Fmake_list, Smake_list, 2, 2, 0, 2727DEFUN ("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
2903DEFUE ("make-vector", Fmake_vector, Smake_vector, 2, 2, 0, 2903DEFUN ("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.
2905See also the function `vector'. */) 2905See 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
2925DEFUE ("vector", Fvector, Svector, 0, MANY, 0, 2925DEFUN ("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.
2927Any number of arguments, even zero arguments, are allowed. 2927Any number of arguments, even zero arguments, are allowed.
2928usage: (vector &rest OBJECTS) */) 2928usage: (vector &rest OBJECTS) */)
@@ -2941,7 +2941,7 @@ usage: (vector &rest OBJECTS) */)
2941} 2941}
2942 2942
2943 2943
2944DEFUE ("make-byte-code", Fmake_byte_code, Smake_byte_code, 4, MANY, 0, 2944DEFUN ("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.
2946The arguments should be the ARGLIST, bytecode-string BYTE-CODE, constant 2946The arguments should be the ARGLIST, bytecode-string BYTE-CODE, constant
2947vector CONSTANTS, maximum stack size DEPTH, (optional) DOCSTRING, 2947vector CONSTANTS, maximum stack size DEPTH, (optional) DOCSTRING,
@@ -3036,7 +3036,7 @@ init_symbol (void)
3036} 3036}
3037 3037
3038 3038
3039DEFUE ("make-symbol", Fmake_symbol, Smake_symbol, 1, 1, 0, 3039DEFUN ("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.
3041Its value and function definition are void, and its property list is nil. */) 3041Its 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
3202DEFUE ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0, 3202DEFUN ("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
3929static double avg_live; 3929static double avg_live;
3930 3930
3931DEFUE ("gc-status", Fgc_status, Sgc_status, 0, 0, "", 3931DEFUN ("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
4746DEFUE ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0, 4746DEFUN ("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.
4748Recursively copies contents of vectors and cons cells. 4748Recursively copies contents of vectors and cons cells.
4749Does not copy symbols. Copies strings without text properties. */) 4749Does not copy symbols. Copies strings without text properties. */)
@@ -4837,7 +4837,7 @@ inhibit_garbage_collection (void)
4837} 4837}
4838 4838
4839 4839
4840DEFUE ("garbage-collect", Fgarbage_collect, Sgarbage_collect, 0, 0, "", 4840DEFUN ("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.
4842Garbage collection happens automatically if you cons more than 4842Garbage 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.