mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-20 11:33:09 -08:00
(Flist_buffers): Always return a value.
This commit is contained in:
parent
60b73b2585
commit
fd2dab90e1
1 changed files with 4 additions and 3 deletions
|
|
@ -1141,9 +1141,9 @@ The R column contains a % for buffers that are read-only.")
|
|||
{
|
||||
Lisp_Object desired_point;
|
||||
|
||||
desired_point =
|
||||
internal_with_output_to_temp_buffer ("*Buffer List*",
|
||||
list_buffers_1, files);
|
||||
desired_point
|
||||
= internal_with_output_to_temp_buffer ("*Buffer List*",
|
||||
list_buffers_1, files);
|
||||
|
||||
if (NUMBERP (desired_point))
|
||||
{
|
||||
|
|
@ -1153,6 +1153,7 @@ The R column contains a % for buffers that are read-only.")
|
|||
SET_PT (XINT (desired_point));
|
||||
return unbind_to (count, Qnil);
|
||||
}
|
||||
return Qnil;
|
||||
}
|
||||
|
||||
DEFUN ("kill-all-local-variables", Fkill_all_local_variables, Skill_all_local_variables,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue