comparison src/minibuf.c @ 6235:d93350e9d2bc

(get_minibuffer): Make name buffer large enough.
author Karl Heuer <kwzh@gnu.org>
date Mon, 07 Mar 1994 18:55:55 +0000
parents 46e46e523620
children a74524e1c961
comparison
equal deleted inserted replaced
6234:46e46e523620 6235:d93350e9d2bc
305 Lisp_Object 305 Lisp_Object
306 get_minibuffer (depth) 306 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;
314 tail = Fnthcdr (num, Vminibuffer_list); 314 tail = Fnthcdr (num, Vminibuffer_list);
315 if (NILP (tail)) 315 if (NILP (tail))