summaryrefslogtreecommitdiff
path: root/src/minibuf.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-02-22 15:09:33 +0000
committerJim Blandy <jimb@redhat.com>1993-02-22 15:09:33 +0000
commitf3b22e83558c8ff96c38ffd48292285f13314e2c (patch)
tree4aa45102b008b122641af83c6974d4a4b05c5210 /src/minibuf.c
parentd3f15e8df4951cf5002ff612dc54c4f7b093f76b (diff)
downloademacs-f3b22e83558c8ff96c38ffd48292285f13314e2c.tar.gz
* minibuf.c (Fdisplay_completion_list): Pass the proper number of
arguments to Flength. * xmenu.c (list_of_items): Same.
Diffstat (limited to 'src/minibuf.c')
-rw-r--r--src/minibuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index bc1074c89d0..9b4867f571a 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -1296,7 +1296,7 @@ or may be a list of two strings to be printed as if concatenated.")
if (XTYPE (Vstandard_output) != Lisp_Buffer)
{
Lisp_Object tem;
- tem = Flength (elt, Qt);
+ tem = Flength (elt);
column += XINT (tem);
}
Fprinc (elt, Qnil);