comparison src/fileio.c @ 51636:758b45c47650

(Fwrite_region): Alternate messages for append and partial write.
author Richard M. Stallman <rms@gnu.org>
date Sun, 22 Jun 2003 00:04:10 +0000
parents b4847cd4179f
children 514920a68703
comparison
equal deleted inserted replaced
51635:dec942028211 51636:758b45c47650
5220 } 5220 }
5221 else if (quietly) 5221 else if (quietly)
5222 return Qnil; 5222 return Qnil;
5223 5223
5224 if (!auto_saving) 5224 if (!auto_saving)
5225 message_with_string ("Wrote %s", visit_file, 1); 5225 message_with_string ((! INTEGERP (append)
5226 ? "Updated %s"
5227 : ! NILP (append)
5228 ? "Added to %s"
5229 : "Wrote %s"),
5230 visit_file, 1);
5226 5231
5227 return Qnil; 5232 return Qnil;
5228 } 5233 }
5229 5234
5230 Lisp_Object merge (); 5235 Lisp_Object merge ();