diff options
| author | Miles Bader | 2006-02-11 00:11:19 +0000 |
|---|---|---|
| committer | Miles Bader | 2006-02-11 00:11:19 +0000 |
| commit | 0b125475295ac24db12b28e67d349a0ec0020bd3 (patch) | |
| tree | 100578c3b6eb01151eb5c51f0bbe11ca941bd0d5 /src/alloc.c | |
| parent | 380874900ca183ec2fdce91949d841328852d7a8 (diff) | |
| parent | 9d64cd1339707277e541b6c54f847240464f65ec (diff) | |
| download | emacs-0b125475295ac24db12b28e67d349a0ec0020bd3.tar.gz emacs-0b125475295ac24db12b28e67d349a0ec0020bd3.zip | |
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-14
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 58-65)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 22-28)
- Update from CVS
- Merge from emacs--devo--0
- Update from CVS: lisp/gnus.el: Remove bogus comment.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c index 3d87710c772..04efb708665 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -2299,7 +2299,7 @@ INIT must be an integer that represents a character. */) | |||
| 2299 | 2299 | ||
| 2300 | 2300 | ||
| 2301 | DEFUN ("make-bool-vector", Fmake_bool_vector, Smake_bool_vector, 2, 2, 0, | 2301 | DEFUN ("make-bool-vector", Fmake_bool_vector, Smake_bool_vector, 2, 2, 0, |
| 2302 | doc: /* Return a new bool-vector of length LENGTH, using INIT for as each element. | 2302 | doc: /* Return a new bool-vector of length LENGTH, using INIT for each element. |
| 2303 | LENGTH must be a number. INIT matters only in whether it is t or nil. */) | 2303 | LENGTH must be a number. INIT matters only in whether it is t or nil. */) |
| 2304 | (length, init) | 2304 | (length, init) |
| 2305 | Lisp_Object length, init; | 2305 | Lisp_Object length, init; |
| @@ -4768,7 +4768,7 @@ make_pure_vector (len) | |||
| 4768 | 4768 | ||
| 4769 | 4769 | ||
| 4770 | DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0, | 4770 | DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0, |
| 4771 | doc: /* Make a copy of OBJECT in pure storage. | 4771 | doc: /* Make a copy of object OBJ in pure storage. |
| 4772 | Recursively copies contents of vectors and cons cells. | 4772 | Recursively copies contents of vectors and cons cells. |
| 4773 | Does not copy symbols. Copies strings without text properties. */) | 4773 | Does not copy symbols. Copies strings without text properties. */) |
| 4774 | (obj) | 4774 | (obj) |