diff options
| author | Richard M. Stallman | 1993-11-19 17:48:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-11-19 17:48:44 +0000 |
| commit | fd2dab90e1d2c2b8b2b6a3ff6041d93fce21920f (patch) | |
| tree | 635d0a737cb810a9ae3f245393f3dceebb80864a /src/buffer.c | |
| parent | 60b73b25853a0ca42d7838f9efcb8b9e33cb63ad (diff) | |
| download | emacs-fd2dab90e1d2c2b8b2b6a3ff6041d93fce21920f.tar.gz emacs-fd2dab90e1d2c2b8b2b6a3ff6041d93fce21920f.zip | |
(Flist_buffers): Always return a value.
Diffstat (limited to 'src/buffer.c')
| -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, |