comparison src/alloc.c @ 27348:46cf02cace2d

(purecopy): Doc fix.
author Dave Love <fx@gnu.org>
date Mon, 17 Jan 2000 11:41:01 +0000
parents f742c86fcc15
children 9400865ec7cf
comparison
equal deleted inserted replaced
27347:1c4d4979ffc2 27348:46cf02cace2d
2088 } 2088 }
2089 2089
2090 DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0, 2090 DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0,
2091 "Make a copy of OBJECT in pure storage.\n\ 2091 "Make a copy of OBJECT in pure storage.\n\
2092 Recursively copies contents of vectors and cons cells.\n\ 2092 Recursively copies contents of vectors and cons cells.\n\
2093 Does not copy symbols.") 2093 Does not copy symbols. Copies strings without text properties.")
2094 (obj) 2094 (obj)
2095 register Lisp_Object obj; 2095 register Lisp_Object obj;
2096 { 2096 {
2097 if (NILP (Vpurify_flag)) 2097 if (NILP (Vpurify_flag))
2098 return obj; 2098 return obj;