mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-05 19:31:02 -08:00
(Fbuffer_disable_undo): Make arg optional.
This commit is contained in:
parent
b8d584f66f
commit
5b8bcf48ed
1 changed files with 3 additions and 2 deletions
|
|
@ -620,9 +620,10 @@ If BUFFER is omitted or nil, some interesting buffer is returned.")
|
|||
return Fget_buffer_create (build_string ("*scratch*"));
|
||||
}
|
||||
|
||||
DEFUN ("buffer-disable-undo", Fbuffer_disable_undo, Sbuffer_disable_undo, 1,1,
|
||||
DEFUN ("buffer-disable-undo", Fbuffer_disable_undo, Sbuffer_disable_undo, 0, 1,
|
||||
0,
|
||||
"Make BUFFER stop keeping undo information.")
|
||||
"Make BUFFER stop keeping undo information.\n\
|
||||
No argument or nil as argument means do this for the current buffer.")
|
||||
(buffer)
|
||||
register Lisp_Object buffer;
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue