comparison src/buffer.c @ 4942:0ea29f510ba0

(Ferase_buffer): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Tue, 09 Nov 1993 21:34:18 +0000
parents ef44bf38f456
children eca469f14d11
comparison
equal deleted inserted replaced
4941:74c118ef608c 4942:0ea29f510ba0
1010 return Qnil; 1010 return Qnil;
1011 } 1011 }
1012 1012
1013 DEFUN ("erase-buffer", Ferase_buffer, Serase_buffer, 0, 0, "*", 1013 DEFUN ("erase-buffer", Ferase_buffer, Serase_buffer, 0, 0, "*",
1014 "Delete the entire contents of the current buffer.\n\ 1014 "Delete the entire contents of the current buffer.\n\
1015 Any clipping restriction in effect (see `narrow-to-region') is removed,\n\ 1015 Any narrowing restriction in effect (see `narrow-to-region') is removed,\n\
1016 so the buffer is truly empty after this.") 1016 so the buffer is truly empty after this.")
1017 () 1017 ()
1018 { 1018 {
1019 Fwiden (); 1019 Fwiden ();
1020 del_range (BEG, Z); 1020 del_range (BEG, Z);