diff options
| author | Jim Blandy | 1992-01-13 21:48:08 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-01-13 21:48:08 +0000 |
| commit | 265a9e559da4ac72d154ecd638c51801b3e97847 (patch) | |
| tree | 633e4dc50761c2cd5201a7874e23eee9e51aecea /src/alloc.c | |
| parent | d427b66a664c0e1ffc818dfa5b87b45b4857d2ae (diff) | |
| download | emacs-265a9e559da4ac72d154ecd638c51801b3e97847.tar.gz emacs-265a9e559da4ac72d154ecd638c51801b3e97847.zip | |
*** empty log message ***
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/alloc.c b/src/alloc.c index 856ac104c9d..24bb67c6dda 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -329,7 +329,7 @@ Any number of arguments, even zero arguments, are allowed.") | |||
| 329 | XFASTINT (len) = nargs; | 329 | XFASTINT (len) = nargs; |
| 330 | val = Fmake_list (len, Qnil); | 330 | val = Fmake_list (len, Qnil); |
| 331 | val_tail = val; | 331 | val_tail = val; |
| 332 | while (!NULL (val_tail)) | 332 | while (!NILP (val_tail)) |
| 333 | { | 333 | { |
| 334 | XCONS (val_tail)->car = *args++; | 334 | XCONS (val_tail)->car = *args++; |
| 335 | val_tail = XCONS (val_tail)->cdr; | 335 | val_tail = XCONS (val_tail)->cdr; |
| @@ -425,14 +425,14 @@ significance.") | |||
| 425 | register struct Lisp_Vector *p; | 425 | register struct Lisp_Vector *p; |
| 426 | 426 | ||
| 427 | XFASTINT (len) = nargs; | 427 | XFASTINT (len) = nargs; |
| 428 | if (!NULL (Vpurify_flag)) | 428 | if (!NILP (Vpurify_flag)) |
| 429 | val = make_pure_vector (len); | 429 | val = make_pure_vector (len); |
| 430 | else | 430 | else |
| 431 | val = Fmake_vector (len, Qnil); | 431 | val = Fmake_vector (len, Qnil); |
| 432 | p = XVECTOR (val); | 432 | p = XVECTOR (val); |
| 433 | for (index = 0; index < nargs; index++) | 433 | for (index = 0; index < nargs; index++) |
| 434 | { | 434 | { |
| 435 | if (!NULL (Vpurify_flag)) | 435 | if (!NILP (Vpurify_flag)) |
| 436 | args[index] = Fpurecopy (args[index]); | 436 | args[index] = Fpurecopy (args[index]); |
| 437 | p->contents[index] = args[index]; | 437 | p->contents[index] = args[index]; |
| 438 | } | 438 | } |
| @@ -905,7 +905,7 @@ Does not copy symbols.") | |||
| 905 | register Lisp_Object new, tem; | 905 | register Lisp_Object new, tem; |
| 906 | register int i; | 906 | register int i; |
| 907 | 907 | ||
| 908 | if (NULL (Vpurify_flag)) | 908 | if (NILP (Vpurify_flag)) |
| 909 | return obj; | 909 | return obj; |
| 910 | 910 | ||
| 911 | if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE) | 911 | if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE) |
| @@ -1041,7 +1041,7 @@ Garbage collection happens automatically if you cons more than\n\ | |||
| 1041 | 1041 | ||
| 1042 | /* Save a copy of the contents of the stack, for debugging. */ | 1042 | /* Save a copy of the contents of the stack, for debugging. */ |
| 1043 | #if MAX_SAVE_STACK > 0 | 1043 | #if MAX_SAVE_STACK > 0 |
| 1044 | if (NULL (Vpurify_flag)) | 1044 | if (NILP (Vpurify_flag)) |
| 1045 | { | 1045 | { |
| 1046 | i = &stack_top_variable - stack_bottom; | 1046 | i = &stack_top_variable - stack_bottom; |
| 1047 | if (i < 0) i = -i; | 1047 | if (i < 0) i = -i; |