1
Fork 0
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:
Richard M. Stallman 1993-12-23 01:55:14 +00:00
parent b8d584f66f
commit 5b8bcf48ed

View file

@ -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;
{