diff options
| author | Karl Heuer <kwzh@gnu.org> | 1994-03-07 18:55:55 +0000 |
|---|---|---|
| committer | Karl Heuer <kwzh@gnu.org> | 1994-03-07 18:55:55 +0000 |
| commit | 9f6c23bc36bbc3c39e8b4fcc6da038bcc7211bc5 (patch) | |
| tree | 56b22349b1e45ac1528cfa30f5eee3a645bfaa67 /src | |
| parent | 6300d782d75c06cd6e90be5ce070e7606090a933 (diff) | |
| download | emacs-9f6c23bc36bbc3c39e8b4fcc6da038bcc7211bc5.tar.gz | |
(get_minibuffer): Make name buffer large enough.
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 2 |
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) int depth; { Lisp_Object tail, num, buf; - char name[14]; + char name[24]; extern Lisp_Object nconc2 (); XFASTINT (num) = depth; |
