Buffers
A buffer is a Lisp object containing text to be edited. Buffers are used to hold the contents of files that are being visited; there may also be buffers that are not visiting files. While several buffers may exist at one time, only one buffer is designated the current buffer at any time. Most editing commands act on the contents of the current buffer. Each buffer, including the current buffer, may or may not be displayed in any windows.
Buffer Basics
A buffer is a Lisp object containing text to be edited. Buffers are used to hold the contents of files that are being visited; there may also be buffers that are not visiting files. Although several buffers normally exist, only one buffer is designated the current buffer at any time. Most editing commands act on the contents of the current buffer. Each buffer, including the current buffer, may or may not be displayed in any windows. Buffers in Emacs editing are objects that have distinct names and hold text that can be edited. Buffers appear to Lisp programs as a special data type. You can think of the contents of a buffer as a string that you can extend; insertions and deletions may occur in any part of the buffer. Text. A Lisp buffer object contains numerous pieces of information. Some of this information is directly accessible to the programmer through variables, while other information is accessible only through special-purpose functions. For example, the visited file name is directly accessible through a variable, while the value of point is accessible only through a primitive function. Buffer-specific information that is directly accessible is stored in buffer-local variable bindings, which are variable values that are effective only in a particular buffer. This feature allows each buffer to override the values of certain variables. Most major modes override variables such as fill-column or comment-column in this way. For more information about buffer-local variables and functions related to them, see Buffer-Local Variables. For functions and variables related to visiting files in buffers, see Visiting Files and Saving Buffers. For functions and variables related to the display of buffers in windows, see Buffers and Windows.
-
bufferp - This function returns
tif object is a buffer,nilotherwise.
The Current Buffer
There are, in general, many buffers in an Emacs session. At any time, one of them is designated the current buffer—the buffer in which most editing takes place. Most of the primitives for examining or changing text operate implicitly on the current buffer (Text). Normally, the buffer displayed in the selected window (Selecting Windows) is the current buffer, but this is not always so: a Lisp program can temporarily designate any buffer as current in order to operate on its contents, without changing what is displayed on the screen. The most basic function for designating a current buffer is set-buffer.
-
current-buffer - This function returns the current buffer.
(current-buffer)
=> #<buffer buffers.texi>
-
set-buffer - This function makes buffer-or-name the current buffer. buffer-or-name must be an existing buffer or the name of an existing buffer. The return value is the buffer made current. This function does not display the buffer in any window, so the user cannot necessarily see the buffer. But Lisp programs will now operate on it.
When an editing command returns to the editor command loop, Emacs automatically calls set-buffer on the buffer shown in the selected window (Selecting Windows). This is to prevent confusion: it ensures that the buffer that the cursor is in, when Emacs reads a command, is the buffer to which that command applies (Command Loop). Thus, you should not use set-buffer to switch visibly to a different buffer; for that, use the functions described in Switching Buffers. When writing a Lisp function, do not rely on this behavior of the command loop to restore the current buffer after an operation. Editing commands can also be called as Lisp functions by other programs, not just from the command loop; it is convenient for the caller if the subroutine does not change which buffer is current (unless, of course, that is the subroutine's purpose). To operate temporarily on another buffer, put the set-buffer within a save-current-buffer form. Here, as an example, is a simplified version of the command append-to-buffer:
(defun append-to-buffer (buffer start end)
"Append the text of the region to BUFFER."
(interactive "BAppend to buffer: \nr")
(let ((oldbuf (current-buffer)))
(save-current-buffer
(set-buffer (get-buffer-create buffer))
(insert-buffer-substring oldbuf start end))))
Here, we bind a local variable to record the current buffer, and then save-current-buffer arranges to make it current again later. Next, set-buffer makes the specified buffer current, and insert-buffer-substring copies the string from the original buffer to the specified (and now current) buffer. Alternatively, we can use the with-current-buffer macro:
(defun append-to-buffer (buffer start end)
"Append the text of the region to BUFFER."
(interactive "BAppend to buffer: \nr")
(let ((oldbuf (current-buffer)))
(with-current-buffer (get-buffer-create buffer)
(insert-buffer-substring oldbuf start end))))
In either case, if the buffer appended to happens to be displayed in some window, the next redisplay will show how its text has changed. If it is not displayed in any window, you will not see the change immediately on the screen. The command causes the buffer to become current temporarily, but does not cause it to be displayed. If you make local bindings (with let or function arguments) for a variable that may also have buffer-local bindings, make sure that the same buffer is current at the beginning and at the end of the local binding's scope. Otherwise you might bind it in one buffer and unbind it in another! Do not rely on using set-buffer to change the current buffer back, because that won't do the job if a quit happens while the wrong buffer is current. For instance, in the previous example, it would have been wrong to do this:
(let ((oldbuf (current-buffer)))
(set-buffer (get-buffer-create buffer))
(insert-buffer-substring oldbuf start end)
(set-buffer oldbuf))
Using save-current-buffer or with-current-buffer, as we did, correctly handles quitting, errors, and throw, as well as ordinary evaluation.
-
save-current-buffer - The
save-current-bufferspecial form saves the identity of the current buffer, evaluates the body forms, and finally restores that buffer as current. The return value is the value of the last form in body. The current buffer is restored even in case of an abnormal exit viathrowor error (Nonlocal Exits). If the buffer that used to be current has been killed by the time of exit fromsave-current-buffer, then it is not made current again, of course. Instead, whichever buffer was current just before exit remains current. -
with-current-buffer - The
with-current-buffermacro saves the identity of the current buffer, makes buffer-or-name current, evaluates the body forms, and finally restores the current buffer. buffer-or-name must specify an existing buffer or the name of an existing buffer. The return value is the value of the last form in body. The current buffer is restored even in case of an abnormal exit viathrowor error (Nonlocal Exits). -
with-temp-buffer - The
with-temp-buffermacro evaluates the body forms with a temporary buffer as the current buffer. It saves the identity of the current buffer, creates a temporary buffer and makes it current, evaluates the body forms, and finally restores the previous current buffer while killing the temporary buffer. By default, undo information (Undo) is not recorded in the buffer created by this macro (but body can enable that, if needed). The temporary buffer also does not run the hookskill-buffer-hook,kill-buffer-query-functions(Killing Buffers), andbuffer-list-update-hook(Buffer List). The return value is the value of the last form in body. You can return the contents of the temporary buffer by using(buffer-string)as the last form. The current buffer is restored even in case of an abnormal exit viathrowor error (Nonlocal Exits). See alsowith-temp-filein Writing to Files.
Buffer Names
Each buffer has a unique name, which is a string. Many of the functions that work on buffers accept either a buffer or a buffer name as an argument. Any argument called buffer-or-name is of this sort, and an error is signaled if it is neither a string nor a buffer. Any argument called buffer must be an actual buffer object, not a name. Buffers that are ephemeral and generally uninteresting to the user have names starting with a space, so that the list-buffers and buffer-menu commands don't mention them (but if such a buffer visits a file, it is mentioned). A name starting with space also initially disables recording undo information; see Undo.
-
buffer-name - This function returns the name of buffer as a string. buffer defaults to the current buffer. If
buffer-namereturnsnil, it means that buffer has been killed. Killing Buffers.
(buffer-name)
=> "buffers.texi"
(setq foo (get-buffer "temp"))
=> #<buffer temp>
(kill-buffer foo)
=> nil
(buffer-name foo)
=> nil
foo
=> #<killed buffer>
-
Command rename-buffer - This function renames the current buffer to newname. An error is signaled if newname is not a string. Ordinarily,
rename-buffersignals an error if newname is already in use. However, if unique is non-nil, it modifies newname to make a name that is not in use. Interactively, you can make unique non-nilwith a numeric prefix argument. (This is how the commandrename-uniquelyis implemented.) This function returns the name actually given to the buffer. -
get-buffer - This function returns the buffer specified by buffer-or-name. If buffer-or-name is a string and there is no buffer with that name, the value is
nil. If buffer-or-name is a buffer, it is returned as given; that is not very useful, so the argument is usually a name. For example:
(setq b (get-buffer "lewis"))
=> #<buffer lewis>
(get-buffer b)
=> #<buffer lewis>
(get-buffer "Frazzle-nots")
=> nil
See also the function get-buffer-create in Creating Buffers.
-
generate-new-buffer-name - This function returns a name that would be unique for a new buffer—but does not create the buffer. It starts with starting-name, and produces a name not currently in use for any buffer by appending a number inside of
<...>. It starts at 2 and keeps incrementing the number until it is not the name of an existing buffer. If the optional second argument ignore is non-nil, it should be a string, a potential buffer name. It means to consider that potential buffer acceptable, if it is tried, even if it is the name of an existing buffer (which would normally be rejected). Thus, if buffers namedfoo,foo<2>,foo<3>andfoo<4>exist,
(generate-new-buffer-name "foo")
=> "foo<5>"
(generate-new-buffer-name "foo" "foo<3>")
=> "foo<3>"
(generate-new-buffer-name "foo" "foo<6>")
=> "foo<5>"
See the related function generate-new-buffer in Creating Buffers.
Buffer File Name
The buffer file name is the name of the file that is visited in that buffer. When a buffer is not visiting a file, its buffer file name is nil. Most of the time, the buffer name is the same as the nondirectory part of the buffer file name, but the buffer file name and the buffer name are distinct and can be set independently. Visiting Files.
-
buffer-file-name - This function returns the absolute file name of the file that buffer is visiting. If buffer is not visiting any file,
buffer-file-namereturnsnil. If buffer is not supplied, it defaults to the current buffer.
(buffer-file-name (other-buffer))
=> "/usr/user/lewis/manual/files.texi"
-
buffer-file-name - This buffer-local variable contains the name of the file being visited in the current buffer, or
nilif it is not visiting a file. It is a permanent local variable, unaffected bykill-all-local-variables.
buffer-file-name
=> "/usr/user/lewis/manual/buffers.texi"
It is risky to change this variable's value without doing various other things. Normally it is better to use set-visited-file-name (see below); some of the things done there, such as changing the buffer name, are not strictly necessary, but others are essential to avoid confusing Emacs.
-
buffer-file-truename - This buffer-local variable holds the abbreviated truename of the file visited in the current buffer, or
nilif no file is visited. It is a permanent local, unaffected bykill-all-local-variables. Truenames, and abbreviate-file-name. -
buffer-file-number - This buffer-local variable holds the inode number and device identifier of the file visited in the current buffer, or
nilif no file or a nonexistent file is visited. It is a permanent local, unaffected bykill-all-local-variables. The value is normally a list of the form(INODENUM DEVICE). This tuple uniquely identifies the file among all files accessible on the system. See the functionfile-attributes, in File Attributes, for more information about them. Ifbuffer-file-nameis the name of a symbolic link, then both inodenum and device refer to the recursive target of the link. -
get-file-buffer - This function returns the buffer visiting file filename. If there is no such buffer, it returns
nil. The argument filename, which must be a string, is expanded (File Name Expansion), then compared against the visited file names of all live buffers. Note that the buffer'sbuffer-file-namemust match the expansion of filename exactly. This function will not recognize other names for the same file.
(get-file-buffer "buffers.texi")
=> #<buffer buffers.texi>
In unusual circumstances, there can be more than one buffer visiting the same file name. In such cases, this function returns the first such buffer in the buffer list.
-
find-buffer-visiting - This is like
get-file-buffer, except that it can return any buffer visiting the file possibly under a different name. That is, the buffer'sbuffer-file-namedoes not need to match the expansion of filename exactly, it only needs to refer to the same file. If predicate is non-nil, it should be a function of one argument, a buffer visiting filename. The buffer is only considered a suitable return value if predicate returns non-nil. If it can not find a suitable buffer to return,find-buffer-visitingreturnsnil. -
Command set-visited-file-name - If filename is a non-empty string, this function changes the name of the file visited in the current buffer to filename. (If the buffer had no visited file, this gives it one.) The next time the buffer is saved it will go in the newly-specified file. This command marks the buffer as modified, since it does not (as far as Emacs knows) match the contents of filename, even if it matched the former visited file. It also renames the buffer to correspond to the new file name, unless the new name is already in use. If filename is
nilor the empty string, that stands for "no visited file". In this case,set-visited-file-namemarks the buffer as having no visited file, without changing the buffer's modified flag. Normally, this function asks the user for confirmation if there already is a buffer visiting filename. If no-query is non-nil, that prevents asking this question. If there already is a buffer visiting filename, and the user confirms or no-query is non-nil, this function makes the new buffer name unique by appending a number inside of<...>to filename. If along-with-file is non-nil, that means to assume that the former visited file has been renamed to filename. In this case, the command does not change the buffer's modified flag, nor the buffer's recorded last file modification time as reported byvisited-file-modtime(Modification Time). If along-with-file isnil, this function clears the recorded last file modification time, after whichvisited-file-modtimereturns zero. When the functionset-visited-file-nameis called interactively, it prompts for filename in the minibuffer. -
list-buffers-directory - This buffer-local variable specifies a string to display in a buffer listing where the visited file name would go, for buffers that don't have a visited file name. Dired buffers use this variable.
Buffer Modification
Emacs keeps a flag called the modified flag for each buffer, to record whether you have changed the text of the buffer. This flag is set to t whenever you alter the contents of the buffer, and cleared to nil when you save it. Thus, the flag shows whether there are unsaved changes. The flag value is normally shown in the mode line (Mode Line Variables), and controls saving (Saving Buffers) and auto-saving (Auto-Saving). Some Lisp programs set the flag explicitly. For example, the function set-visited-file-name sets the flag to t, because the text does not match the newly-visited file, even if it is unchanged from the file formerly visited. The functions that modify the contents of buffers are described in Text.
-
buffer-modified-p - This function returns non-
nilif buffer has been modified since it was last read in from a file or saved, ornilotherwise. If buffer has been auto-saved since the time it was last modified, this function returns the symbolautosaved. If buffer isnilor omitted, it defaults to the current buffer. -
set-buffer-modified-p - This function marks the current buffer as modified if flag is non-
nil, or as unmodified if the flag isnil. Another effect of calling this function is to cause unconditional redisplay of the mode line for the current buffer. In fact, the functionforce-mode-line-updateworks by doing this:
(set-buffer-modified-p (buffer-modified-p))
-
restore-buffer-modified-p - Like
set-buffer-modified-p, but does not force redisplay of mode lines. This function also allows flag's value to be the symbolautosaved, which marks the buffer as modified and auto-saved after the last modification. -
Command not-modified - This command marks the current buffer as unmodified, and not needing to be saved. If arg is non-
nil, it marks the buffer as modified, so that it will be saved at the next suitable occasion. Interactively, arg is the prefix argument. Don't use this function in programs, since it prints a message in the echo area; useset-buffer-modified-p(above) instead. -
buffer-modified-tick - This function returns buffer's modification-count. This is a counter that increments every time the buffer is modified. If buffer is
nil(or omitted), the current buffer is used. -
buffer-chars-modified-tick - This function returns buffer's character-change modification-count. Changes to text properties leave this counter unchanged; however, each time text is inserted or removed from the buffer, the counter is reset to the value that would be returned by
buffer-modified-tick. By comparing the values returned by twobuffer-chars-modified-tickcalls, you can tell whether a character change occurred in that buffer in between the calls. If buffer isnil(or omitted), the current buffer is used.
Sometimes there's a need for modifying buffer in a way that doesn't really change its text, like if only its text properties are changed. If your program needs to modify a buffer without triggering any hooks and features that react to buffer modifications, use the with-silent-modifications macro.
-
with-silent-modifications - Execute body pretending it does not modify the buffer. This includes checking whether the buffer's file is locked (File Locks), running buffer modification hooks (Change Hooks), etc. Note that if body actually modifies the buffer text (as opposed to its text properties), its undo data may become corrupted.
Buffer Modification Time
Suppose that you visit a file and make changes in its buffer, and meanwhile the file itself is changed on disk. At this point, saving the buffer would overwrite the changes in the file. Occasionally this may be what you want, but usually it would lose valuable information. Emacs therefore checks the file's modification time using the functions described below before saving the file. (File Attributes, for how to examine a file's modification time.)
-
verify-visited-file-modtime - This function compares what buffer (by default, the current-buffer) has recorded for the modification time of its visited file against the actual modification time of the file as recorded by the operating system. The two should be the same unless some other process has written the file since Emacs visited or saved it. The function returns
tif the last actual modification time and Emacs's recorded modification time are the same,nilotherwise. It also returnstif the buffer has no recorded last modification time, that is ifvisited-file-modtimewould return zero. It always returnstfor buffers that are not visiting a file, even ifvisited-file-modtimereturns a non-zero value. For instance, it always returnstfor dired buffers. It returnstfor buffers that are visiting a file that does not exist and never existed, butnilfor file-visiting buffers whose file has been deleted. -
clear-visited-file-modtime - This function clears out the record of the last modification time of the file being visited by the current buffer. As a result, the next attempt to save this buffer will not complain of a discrepancy in file modification times. This function is called in
set-visited-file-nameand other exceptional places where the usual test to avoid overwriting a changed file should not be done. -
visited-file-modtime - This function returns the current buffer's recorded last file modification time, as a Lisp timestamp (Time of Day). If the buffer has no recorded last modification time, this function returns zero. This case occurs, for instance, if the buffer is not visiting a file or if the time has been explicitly cleared by
clear-visited-file-modtime. Note, however, thatvisited-file-modtimereturns a timestamp for some non-file buffers too. For instance, in a Dired buffer listing a directory, it returns the last modification time of that directory, as recorded by Dired. If the buffer is visiting a file that doesn't exist, this function returns −1. -
set-visited-file-modtime - This function updates the buffer's record of the last modification time of the visited file, to the value specified by time if time is not
nil, and otherwise to the last modification time of the visited file. If time is neithernilnor an integer flag returned byvisited-file-modtime, it should be a Lisp time value (Time of Day). This function is useful if the buffer was not read from the file normally, or if the file itself has been changed for some known benign reason. -
ask-user-about-supersession-threat - This function is used to ask a user how to proceed after an attempt to modify a buffer visiting file filename when the file is newer than the buffer text. Emacs detects this because the modification time of the file on disk is newer than the last save-time and its contents have changed. This means some other program has probably altered the file. Depending on the user's answer, the function may return normally, in which case the modification of the buffer proceeds, or it may signal a
file-supersessionerror with data(FILENAME), in which case the proposed buffer modification is not allowed. This function is called automatically by Emacs on the proper occasions. It exists so you can customize Emacs by redefining it. See the fileuserlock.elfor the standard definition. See also the file locking mechanism in File Locks.
Read-Only Buffers
If a buffer is read-only, then you cannot change its contents, although you may change your view of the contents by scrolling and narrowing. Read-only buffers are used in two kinds of situations:
- A buffer visiting a write-protected file is normally read-only. Here, the purpose is to inform the user that editing the buffer with the aim of saving it in the file may be futile or undesirable. The user who wants to change the buffer text despite this can do so after clearing the read-only flag with
C-x C-q. - Modes such as Dired and Rmail make buffers read-only when altering the contents with the usual editing commands would probably be a mistake. The special commands of these modes bind
buffer-read-onlytonil(withlet) or bindinhibit-read-onlytotaround the places where they themselves change the text. buffer-read-only:: This buffer-local variable specifies whether the buffer is read-only. The buffer is read-only if this variable is non-nil. However, characters that have theinhibit-read-onlytext property can still be modified. inhibit-read-only.inhibit-read-only:: If this variable is non-nil, then read-only buffers and, depending on the actual value, some or all read-only characters may be modified. Read-only characters in a buffer are those that have a non-nilread-onlytext property. Special Properties, for more information about text properties. Ifinhibit-read-onlyist, allread-onlycharacter properties have no effect. Ifinhibit-read-onlyis a list, thenread-onlycharacter properties have no effect if they are members of the list (comparison is done witheq).Command read-only-mode:: This is the mode command for Read Only minor mode, a buffer-local minor mode. When the mode is enabled,buffer-read-onlyis non-nilin the buffer; when disabled,buffer-read-onlyisnilin the buffer. The calling convention is the same as for other minor mode commands (Minor Mode Conventions). This minor mode mainly serves as a wrapper forbuffer-read-only; unlike most minor modes, there is no separateread-only-modevariable. Even when Read Only mode is disabled, characters with non-nilread-onlytext properties remain read-only. To temporarily ignore all read-only states, bindinhibit-read-only, as described above. When enabling Read Only mode, this mode command also enables View mode if the optionview-read-onlyis non-nil. Miscellaneous Buffer Operations. When disabling Read Only mode, it disables View mode if View mode was enabled.barf-if-buffer-read-only:: This function signals abuffer-read-onlyerror if the current buffer is read-only. If the text at position (which defaults to point) has theinhibit-read-onlytext property set, the error will not be raised. Using Interactive, for another way to signal an error if the current buffer is read-only.
The Buffer List
The buffer list is a list of all live buffers. The order of the buffers in this list is based primarily on how recently each buffer has been displayed in a window. Several functions, notably other-buffer, use this ordering. A buffer list displayed for the user also follows this order. Creating a buffer adds it to the end of the buffer list, and killing a buffer removes it from that list. A buffer moves to the front of this list whenever it is chosen for display in a window (Switching Buffers) or a window displaying it is selected (Selecting Windows). A buffer moves to the end of the list when it is buried (see bury-buffer, below). There are no functions available to the Lisp programmer which directly manipulate the buffer list. In addition to the fundamental buffer list just described, Emacs maintains a local buffer list for each frame, in which the buffers that have been displayed (or had their windows selected) in that frame come first. (This order is recorded in the frame's buffer-list frame parameter; see Buffer Parameters.) Buffers never displayed in that frame come afterward, ordered according to the fundamental buffer list.
-
buffer-list - This function returns the buffer list, including all buffers, even those whose names begin with a space. The elements are actual buffers, not their names. If frame is a frame, this returns frame's local buffer list. If frame is
nilor omitted, the fundamental buffer list is used: the buffers appear in order of most recent display or selection, regardless of which frames they were displayed on.
(buffer-list)
=> (#<buffer buffers.texi>
#<buffer *Minibuf-1*> #<buffer buffer.c>
#<buffer *Help*> #<buffer TAGS>)
;; Note that the name of the minibuffer
;; begins with a space!
(mapcar #'buffer-name (buffer-list))
=> ("buffers.texi" " *Minibuf-1*"
"buffer.c" "*Help*" "TAGS")
The list returned by buffer-list is constructed specifically; it is not an internal Emacs data structure, and modifying it has no effect on the order of buffers. If you want to change the order of buffers in the fundamental buffer list, here is an easy way:
(defun reorder-buffer-list (new-list)
(while new-list
(bury-buffer (car new-list))
(setq new-list (cdr new-list))))
With this method, you can specify any order for the list, but there is no danger of losing a buffer or adding something that is not a valid live buffer. To change the order or value of a specific frame's buffer list, set that frame's buffer-list parameter with modify-frame-parameters (Parameter Access).
-
other-buffer - This function returns the first buffer in the buffer list other than buffer. Usually, this is the buffer appearing in the most recently selected window (in frame frame or else the selected frame, Input Focus), aside from buffer. Buffers whose names start with a space are not considered at all. If buffer is not supplied (or if it is not a live buffer), then
other-bufferreturns the first buffer in the selected frame's local buffer list. (If frame is non-nil, it returns the first buffer in frame's local buffer list instead.) If frame has a non-nilbuffer-predicateparameter, thenother-bufferuses that predicate to decide which buffers to consider. It calls the predicate once for each buffer, and if the value isnil, that buffer is ignored. Buffer Parameters. If visible-ok isnil,other-bufferavoids returning a buffer visible in any window on any visible frame, except as a last resort. If visible-ok is non-nil, then it does not matter whether a buffer is displayed somewhere or not. If no suitable buffer exists, the buffer*scratch*is returned (and created, if necessary). -
last-buffer - This function returns the last buffer in frame's buffer list other than buffer. If frame is omitted or
nil, it uses the selected frame's buffer list. The argument visible-ok is handled as withother-buffer, see above. If no suitable buffer can be found, the buffer*scratch*is returned. -
Command bury-buffer - This command puts buffer-or-name at the end of the buffer list, without changing the order of any of the other buffers on the list. This buffer therefore becomes the least desirable candidate for
other-bufferto return. The argument can be either a buffer itself or the name of one. This function operates on each frame'sbuffer-listparameter as well as the fundamental buffer list; therefore, the buffer that you bury will come last in the value of(buffer-list FRAME)and in the value of(buffer-list). In addition, it also puts the buffer at the end of the list of buffers of the selected window (Window History) provided it is shown in that window. If buffer-or-name isnilor omitted, this means to bury the current buffer. In addition, if the current buffer is displayed in the selected window (Selecting Windows), this makes sure that the window is either deleted or another buffer is shown in it. More precisely, if the selected window is dedicated (Dedicated Windows) and there are other windows on its frame, the window is deleted. If it is the only window on its frame and that frame is not the only frame on its terminal, the frame is dismissed by calling the function specified byframe-auto-hide-function(Quitting Windows). Otherwise, it callsswitch-to-prev-buffer(Window History) to show another buffer in that window. If buffer-or-name is displayed in some other window, it remains displayed there. To replace a buffer in all the windows that display it, usereplace-buffer-in-windows, Buffers and Windows. -
Command unbury-buffer - This command switches to the last buffer in the local buffer list of the selected frame. More precisely, it calls the function
switch-to-buffer(Switching Buffers), to display the buffer returned bylast-buffer(see above), in the selected window. -
buffer-list-update-hook - This is a normal hook run whenever the buffer list changes. Functions (implicitly) running this hook are
get-buffer-create(Creating Buffers),rename-buffer(Buffer Names),kill-buffer(Killing Buffers),bury-buffer(see above), andselect-window(Selecting Windows). This hook is not run for internal or temporary buffers created byget-buffer-createorgenerate-new-bufferwith a non-nilargument inhibit-buffer-hooks. Functions run by this hook should avoid callingselect-windowwith anilnorecord argument since this may lead to infinite recursion. -
buffer-match-p - This function checks if a buffer designated by
buffer-or-namesatisfies the specified condition. Optional third argument arg is passed to the predicate function in condition. A valid condition can be one of the following: - ?
- A string, interpreted as a regular expression. The buffer satisfies the condition if the regular expression matches the buffer name.
- ?
- A predicate function, which should return non-
nilif the buffer matches. If the function expects one argument, it is called with buffer-or-name as the argument; if it expects 2 arguments, the first argument is buffer-or-name and the second is arg (ornilif arg is omitted). - ?
- A cons-cell
(OPER . EXPR)where oper is one of - ?
- (not cond) Satisfied if cond doesn't satisfy
buffer-match-pwith the same buffer andarg. - ?
- (or conds…) Satisfied if any condition in conds satisfies
buffer-match-p, with the same buffer andarg. - ?
- (and conds…) Satisfied if all the conditions in conds satisfy
buffer-match-p, with the same buffer andarg. - ?
- derived-mode Satisfied if the buffer's major mode derives from expr. Note that this condition might fail to report a match if
buffer-match-pis invoked before the major mode of the buffer has been established. - ?
- major-mode Satisfied if the buffer's major mode is equal to expr. Prefer using
derived-modeinstead, when both can work. Note that this condition might fail to report a match ifbuffer-match-pis invoked before the major mode of the buffer has been established. - ?
- t Satisfied by any buffer. A convenient alternative to
""(empty string) or(and)(empty conjunction). -
match-buffers - This function returns a list of all buffers that satisfy the condition. If no buffers match, the function returns
nil. The argument condition is as defined inbuffer-match-pabove. By default, all the buffers are considered, but this can be restricted via the optional argumentbuffer-list, which should be a list of buffers to consider. Optional third argument arg will be passed to condition in the same way asbuffer-match-pdoes.
Creating Buffers
This section describes the two primitives for creating buffers. get-buffer-create creates a buffer if it finds no existing buffer with the specified name; generate-new-buffer always creates a new buffer and gives it a unique name. Both functions accept an optional argument inhibit-buffer-hooks. If it is non-nil, the buffer they create does not run the hooks kill-buffer-hook, kill-buffer-query-functions (Killing Buffers), and buffer-list-update-hook (Buffer List). This avoids slowing down internal or temporary buffers that are never presented to users or passed on to other applications. Other functions you can use to create buffers include with-output-to-temp-buffer (Temporary Displays) and create-file-buffer (Visiting Files). Starting a subprocess can also create a buffer (Processes).
-
get-buffer-create - This function returns a buffer named buffer-or-name. The buffer returned does not become the current buffer—this function does not change which buffer is current. buffer-or-name must be either a string or an existing buffer. If it is a string and a live buffer with that name already exists,
get-buffer-createreturns that buffer. If no such buffer exists, it creates a new buffer. If buffer-or-name is a buffer instead of a string, it is returned as given, even if it is dead.
(get-buffer-create "foo")
=> #<buffer foo>
The major mode for a newly created buffer is set to Fundamental mode. (The default value of the variable major-mode is handled at a higher level; see Auto Major Mode.) If the name begins with a space, the buffer initially disables undo information recording (Undo).
-
generate-new-buffer - This function returns a newly created, empty buffer, but does not make it current. The name of the buffer is generated by passing name to the function
generate-new-buffer-name(Buffer Names). Thus, if there is no buffer named name, then that is the name of the new buffer; if that name is in use, a suffix of the form<N>, where n is an integer, is appended to name. An error is signaled if name is not a string.
(generate-new-buffer "bar")
=> #<buffer bar>
(generate-new-buffer "bar")
=> #<buffer bar<2>>
(generate-new-buffer "bar")
=> #<buffer bar<3>>
The major mode for the new buffer is set to Fundamental mode. The default value of the variable major-mode is handled at a higher level. Auto Major Mode.
Killing Buffers
Killing a buffer makes its name unknown to Emacs and makes the memory space it occupied available for other use. The buffer object for the buffer that has been killed remains in existence as long as anything refers to it, but it is specially marked so that you cannot make it current or display it. Killed buffers retain their identity, however; if you kill two distinct buffers, they remain distinct according to eq although both are dead. If you kill a buffer that is current or displayed in a window, Emacs automatically selects or displays some other buffer instead. This means that killing a buffer can change the current buffer. Therefore, when you kill a buffer, you should also take the precautions associated with changing the current buffer (unless you happen to know that the buffer being killed isn't current). Current Buffer. If you kill a buffer that is the base buffer of one or more indirect buffers (Indirect Buffers), the indirect buffers are automatically killed as well. The buffer-name of a buffer is nil if, and only if, the buffer is killed. A buffer that has not been killed is called a live buffer. To test whether a buffer is live or killed, use the function buffer-live-p (see below).
-
Command kill-buffer - This function kills the buffer buffer-or-name, freeing all its memory for other uses or to be returned to the operating system. If buffer-or-name is
nilor omitted, it kills the current buffer. Any processes that have this buffer as theprocess-bufferare sent theSIGHUP(hangup) signal, which normally causes them to terminate. Signals to Processes. If the buffer is visiting a file and contains unsaved changes,kill-bufferasks the user to confirm before the buffer is killed. It does this even if not called interactively. To prevent the request for confirmation, clear the modified flag before callingkill-buffer. Buffer Modification. This function callsreplace-buffer-in-windowsfor cleaning up all windows currently displaying the buffer to be killed. Killing a buffer that is already dead has no effect. This function returnstif it actually killed the buffer. It returnsnilif the user refuses to confirm or if buffer-or-name was already dead.
(kill-buffer "foo.unchanged")
=> t
(kill-buffer "foo.changed")
---------- Buffer: Minibuffer ----------
Buffer foo.changed modified; kill anyway? (yes or no) yes
---------- Buffer: Minibuffer ----------
=> t
-
kill-buffer-query-functions - Before confirming unsaved changes,
kill-buffercalls the functions in the listkill-buffer-query-functions, in order of appearance, with no arguments. The buffer being killed is the current buffer when they are called. The idea of this feature is that these functions will ask for confirmation from the user. If any of them returnsnil,kill-bufferspares the buffer's life. This hook is not run for internal or temporary buffers created byget-buffer-createorgenerate-new-bufferwith a non-nilargument inhibit-buffer-hooks. -
kill-buffer-hook - This is a normal hook run by
kill-bufferafter asking all the questions it is going to ask, just before actually killing the buffer. The buffer to be killed is current when the hook functions run. Hooks. This variable is a permanent local, so its local binding is not cleared by changing major modes. This hook is not run for internal or temporary buffers created byget-buffer-createorgenerate-new-bufferwith a non-nilargument inhibit-buffer-hooks. -
buffer-offer-save - This variable, if non-
nilin a particular buffer, tellssave-buffers-kill-emacsto offer to save that buffer, just as it offers to save file-visiting buffers. Ifsave-some-buffersis called with the second optional argument set tot, it will also offer to save the buffer. Lastly, if this variable is set to the symbolalways, bothsave-buffers-kill-emacsandsave-some-bufferswill always offer to save. Definition of save-some-buffers. The variablebuffer-offer-saveautomatically becomes buffer-local when set for any reason. Buffer-Local Variables. -
buffer-save-without-query - This variable, if non-
nilin a particular buffer, tellssave-buffers-kill-emacsandsave-some-buffersto save this buffer (if it's modified) without asking the user. The variable automatically becomes buffer-local when set for any reason. -
buffer-live-p - This function returns
tif object is a live buffer (a buffer which has not been killed),nilotherwise.
Indirect Buffers
An indirect buffer shares the text of some other buffer, which is called the base buffer of the indirect buffer. In some ways it is the analogue, for buffers, of a symbolic link among files. The base buffer may not itself be an indirect buffer. The text of the indirect buffer is always identical to the text of its base buffer; changes made by editing either one are visible immediately in the other. This includes the text properties as well as the characters themselves. In all other respects, the indirect buffer and its base buffer are completely separate. They have different names, independent values of point, independent narrowing, independent markers and overlays (though inserting or deleting text in either buffer relocates the markers and overlays for both), independent major modes, and independent buffer-local variable bindings. An indirect buffer cannot visit a file, but its base buffer can. If you try to save the indirect buffer, that actually saves the base buffer. Killing an indirect buffer has no effect on its base buffer. Killing the base buffer effectively kills the indirect buffer in that it cannot ever again be the current buffer.
-
Command make-indirect-buffer - This creates and returns an indirect buffer named name whose base buffer is base-buffer. The argument base-buffer may be a live buffer or the name (a string) of an existing buffer. If name is the name of an existing buffer, an error is signaled. If clone is non-
nil, then the indirect buffer originally shares the state of base-buffer such as major mode, minor modes, buffer local variables and so on. If clone is omitted ornilthe indirect buffer's state is set to the default state for new buffers. If base-buffer is an indirect buffer, its base buffer is used as the base for the new buffer. If, in addition, clone is non-nil, the initial state is copied from the actual base buffer, not from base-buffer. Creating Buffers, for the meaning of inhibit-buffer-hooks. -
Command clone-indirect-buffer - This function creates and returns a new indirect buffer that shares the current buffer's base buffer and copies the rest of the current buffer's attributes. (If the current buffer is not indirect, it is used as the base buffer.) If display-flag is non-
nil, as it always is in interactive calls, that means to display the new buffer by callingpop-to-buffer. If norecord is non-nil, that means not to put the new buffer to the front of the buffer list. -
buffer-base-buffer - This function returns the base buffer of buffer, which defaults to the current buffer. If buffer is not indirect, the value is
nil. Otherwise, the value is another buffer, which is never an indirect buffer.
Swapping Text Between Two Buffers
Specialized modes sometimes need to let the user access from the same buffer several vastly different types of text. For example, you may need to display a summary of the buffer text, in addition to letting the user access the text itself. This could be implemented with multiple buffers (kept in sync when the user edits the text), or with narrowing (Narrowing). But these alternatives might sometimes become tedious or prohibitively expensive, especially if each type of text requires expensive buffer-global operations in order to provide correct display and editing commands. Emacs provides another facility for such modes: you can quickly swap buffer text between two buffers with buffer-swap-text. This function is very fast because it doesn't move any text, it only changes the internal data structures of the buffer object to point to a different chunk of text. Using it, you can pretend that a group of two or more buffers are actually a single virtual buffer that holds the contents of all the individual buffers together.
-
buffer-swap-text - This function swaps the text of the current buffer and that of its argument buffer. It signals an error if one of the two buffers is an indirect buffer (Indirect Buffers) or is a base buffer of an indirect buffer. All the buffer properties that are related to the buffer text are swapped as well: the positions of point and mark, all the markers, the overlays, the text properties, the undo list, the value of the
enable-multibyte-charactersflag (enable-multibyte-characters), etc. Warning: If this function is called from within asave-excursionform, the current buffer will be set to buffer upon leaving the form, since the marker used bysave-excursionto save the position and buffer will be swapped as well.
If you use buffer-swap-text on a file-visiting buffer, you should set up a hook to save the buffer's original text rather than what it was swapped with. write-region-annotate-functions works for this purpose. You should probably set buffer-saved-size to −2 in the buffer, so that changes in the text it is swapped with will not interfere with auto-saving.
The Buffer Gap
Emacs buffers are implemented using an invisible gap to make insertion and deletion faster. Insertion works by filling in part of the gap, and deletion adds to the gap. Of course, this means that the gap must first be moved to the locus of the insertion or deletion. Emacs moves the gap only when you try to insert or delete. This is why your first editing command in one part of a large buffer, after previously editing in another far-away part, sometimes involves a noticeable delay. This mechanism works invisibly, and Lisp code should never be affected by the gap's current location, but these functions are available for getting information about the gap status.
-
gap-position - This function returns the current gap position in the current buffer.
-
gap-size - This function returns the current gap size of the current buffer.