diff options
author | Dave Love <fx@gnu.org> | 2000-01-17 11:41:01 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-01-17 11:41:01 +0000 |
commit | d71c0668744bb1e0bbba4fc7e9609e7b46d74556 (patch) | |
tree | e1022795b6d20b7d426ef50da14ff22fe8ee9c07 | |
parent | d36100c99b7c38341763fe8e2c58e0399a37d0ee (diff) | |
download | emacs-d71c0668744bb1e0bbba4fc7e9609e7b46d74556.tar.gz |
(purecopy): Doc fix.
-rw-r--r-- | src/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 552d791616d..feb1a5b665f 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -2090,7 +2090,7 @@ make_pure_vector (len) DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0, "Make a copy of OBJECT in pure storage.\n\ Recursively copies contents of vectors and cons cells.\n\ -Does not copy symbols.") +Does not copy symbols. Copies strings without text properties.") (obj) register Lisp_Object obj; { |