Show
Ignore:
Timestamp:
05/18/06 16:19:18 (3 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lispref/buffers.texi

    r4079 r4085  
    234234the current buffer, creates a temporary buffer and makes it current, 
    235235evaluates the @var{body} forms, and finally restores the previous 
    236 current buffer while killing the temporary buffer. 
     236current buffer while killing the temporary buffer.  By default, undo 
     237information (@pxref{Undo}) is not recorded in the buffer created by 
     238this macro (but @var{body} can enable that, if needed). 
    237239 
    238240The return value is the value of the last form in @var{body}.  You can 
     
    911913 
    912914The major mode for a newly created buffer is set to Fundamental mode. 
    913 The variable @code{default-major-mode} is handled at a higher level. 
    914 @xref{Auto Major Mode}. 
    915  
    916 If the buffer's name begins with a space, the buffer has its undo 
    917 information recording (@pxref{Undo}) turned off by default. 
     915(The variable @code{default-major-mode} is handled at a higher level; 
     916see @ref{Auto Major Mode}.)  If the name begins with a space, the 
     917buffer initially disables undo information recording (@pxref{Undo}). 
    918918@end defun 
    919919