aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-03-07 18:55:55 +0000
committerKarl Heuer1994-03-07 18:55:55 +0000
commit9f6c23bc36bbc3c39e8b4fcc6da038bcc7211bc5 (patch)
tree56b22349b1e45ac1528cfa30f5eee3a645bfaa67 /src
parent6300d782d75c06cd6e90be5ce070e7606090a933 (diff)
downloademacs-9f6c23bc36bbc3c39e8b4fcc6da038bcc7211bc5.tar.gz
emacs-9f6c23bc36bbc3c39e8b4fcc6da038bcc7211bc5.zip
(get_minibuffer): Make name buffer large enough.
Diffstat (limited to 'src')
-rw-r--r--src/minibuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index 49b3c4d3a8c..f458133bc6d 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -307,7 +307,7 @@ get_minibuffer (depth)
307 int depth; 307 int depth;
308{ 308{
309 Lisp_Object tail, num, buf; 309 Lisp_Object tail, num, buf;
310 char name[14]; 310 char name[24];
311 extern Lisp_Object nconc2 (); 311 extern Lisp_Object nconc2 ();
312 312
313 XFASTINT (num) = depth; 313 XFASTINT (num) = depth;