Changeset 4085 for trunk/lispref/buffers.texi
- Timestamp:
- 05/18/06 16:19:18 (3 years ago)
- Files:
-
- trunk/lispref/buffers.texi (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lispref/buffers.texi
r4079 r4085 234 234 the current buffer, creates a temporary buffer and makes it current, 235 235 evaluates the @var{body} forms, and finally restores the previous 236 current buffer while killing the temporary buffer. 236 current buffer while killing the temporary buffer. By default, undo 237 information (@pxref{Undo}) is not recorded in the buffer created by 238 this macro (but @var{body} can enable that, if needed). 237 239 238 240 The return value is the value of the last form in @var{body}. You can … … 911 913 912 914 The 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; 916 see @ref{Auto Major Mode}.) If the name begins with a space, the 917 buffer initially disables undo information recording (@pxref{Undo}). 918 918 @end defun 919 919
