aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRoland McGrath1993-02-24 23:37:46 +0000
committerRoland McGrath1993-02-24 23:37:46 +0000
commitc922bc55143f0d9a8632e96eaa23c1e58c8d25eb (patch)
tree407af4a680addf721a949b236734871ed92872ad /src
parent483c1fd3e22455bac410eb9f9405a067f4555b22 (diff)
downloademacs-c922bc55143f0d9a8632e96eaa23c1e58c8d25eb.tar.gz
emacs-c922bc55143f0d9a8632e96eaa23c1e58c8d25eb.zip
(Ferase_buffer): Added interactive spec.
Diffstat (limited to 'src')
-rw-r--r--src/buffer.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 9e21832bfa0..6617ee989fe 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1,11 +1,12 @@
1/* Buffer manipulation primitives for GNU Emacs. 1/* Buffer manipulation primitives for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1992 Free Software Foundation, Inc. 2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1992, 1993
3 Free Software Foundation, Inc.
3 4
4This file is part of GNU Emacs. 5This file is part of GNU Emacs.
5 6
6GNU Emacs is free software; you can redistribute it and/or modify 7GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by 8it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 1, or (at your option) 9the Free Software Foundation; either version 2, or (at your option)
9any later version. 10any later version.
10 11
11GNU Emacs is distributed in the hope that it will be useful, 12GNU Emacs is distributed in the hope that it will be useful,
@@ -973,7 +974,7 @@ selected window if it is displayed there.")
973 return Qnil; 974 return Qnil;
974} 975}
975 976
976DEFUN ("erase-buffer", Ferase_buffer, Serase_buffer, 0, 0, 0, 977DEFUN ("erase-buffer", Ferase_buffer, Serase_buffer, 0, 0, "*",
977 "Delete the entire contents of the current buffer.\n\ 978 "Delete the entire contents of the current buffer.\n\
978Any clipping restriction in effect (see `narrow-to-region') is removed,\n\ 979Any clipping restriction in effect (see `narrow-to-region') is removed,\n\
979so the buffer is truly empty after this.") 980so the buffer is truly empty after this.")