aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1992-10-06 00:02:52 +0000
committerRichard M. Stallman <[email protected]>1992-10-06 00:02:52 +0000
commitc3c734814d617c97c39345f252bc55cdb5a03f59 (patch)
treebf0264af94a64bf8c2b0c8014dccf744af5cef2d
parentfaa64cf7ba919d24dcd287d9d2a37d99d48c7759 (diff)
(make_frame): Pass 2nd arg to Fother_buffer.
-rw-r--r--src/frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index 6a96ba3ea1..b36865cc95 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -199,7 +199,7 @@ make_frame (mini_p)
/* If buf is a 'hidden' buffer (i.e. one whose name starts with
a space), try to find another one. */
if (XSTRING (Fbuffer_name (buf))->data[0] == ' ')
- buf = Fother_buffer (buf);
+ buf = Fother_buffer (buf, Qnil);
Fset_window_buffer (root_window, buf);
}