diff options
| author | Richard M. Stallman | 1992-10-06 00:02:52 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-10-06 00:02:52 +0000 |
| commit | c3c734814d617c97c39345f252bc55cdb5a03f59 (patch) | |
| tree | bf0264af94a64bf8c2b0c8014dccf744af5cef2d /src | |
| parent | faa64cf7ba919d24dcd287d9d2a37d99d48c7759 (diff) | |
| download | emacs-c3c734814d617c97c39345f252bc55cdb5a03f59.tar.gz emacs-c3c734814d617c97c39345f252bc55cdb5a03f59.zip | |
(make_frame): Pass 2nd arg to Fother_buffer.
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c index 6a96ba3ea11..b36865cc95e 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -199,7 +199,7 @@ make_frame (mini_p) | |||
| 199 | /* If buf is a 'hidden' buffer (i.e. one whose name starts with | 199 | /* If buf is a 'hidden' buffer (i.e. one whose name starts with |
| 200 | a space), try to find another one. */ | 200 | a space), try to find another one. */ |
| 201 | if (XSTRING (Fbuffer_name (buf))->data[0] == ' ') | 201 | if (XSTRING (Fbuffer_name (buf))->data[0] == ' ') |
| 202 | buf = Fother_buffer (buf); | 202 | buf = Fother_buffer (buf, Qnil); |
| 203 | Fset_window_buffer (root_window, buf); | 203 | Fset_window_buffer (root_window, buf); |
| 204 | } | 204 | } |
| 205 | 205 | ||