diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/buffer.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/buffer.c b/src/buffer.c index d4300e3b5ed..d0e1f9a3347 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -1141,9 +1141,9 @@ The R column contains a % for buffers that are read-only.") | |||
| 1141 | { | 1141 | { |
| 1142 | Lisp_Object desired_point; | 1142 | Lisp_Object desired_point; |
| 1143 | 1143 | ||
| 1144 | desired_point = | 1144 | desired_point |
| 1145 | internal_with_output_to_temp_buffer ("*Buffer List*", | 1145 | = internal_with_output_to_temp_buffer ("*Buffer List*", |
| 1146 | list_buffers_1, files); | 1146 | list_buffers_1, files); |
| 1147 | 1147 | ||
| 1148 | if (NUMBERP (desired_point)) | 1148 | if (NUMBERP (desired_point)) |
| 1149 | { | 1149 | { |
| @@ -1153,6 +1153,7 @@ The R column contains a % for buffers that are read-only.") | |||
| 1153 | SET_PT (XINT (desired_point)); | 1153 | SET_PT (XINT (desired_point)); |
| 1154 | return unbind_to (count, Qnil); | 1154 | return unbind_to (count, Qnil); |
| 1155 | } | 1155 | } |
| 1156 | return Qnil; | ||
| 1156 | } | 1157 | } |
| 1157 | 1158 | ||
| 1158 | DEFUN ("kill-all-local-variables", Fkill_all_local_variables, Skill_all_local_variables, | 1159 | DEFUN ("kill-all-local-variables", Fkill_all_local_variables, Skill_all_local_variables, |