diff options
author | Richard M. Stallman <rms@gnu.org> | 1991-04-04 19:56:21 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1991-04-04 19:56:21 +0000 |
commit | 9482f133503ed929788199e537096191d8270c4c (patch) | |
tree | 06360b0d323f6342cc64688286c1c33ca051c033 /src/vmsfns.c | |
parent | d4f42190e40004351ccb8c6ce0c530476322036e (diff) | |
download | emacs-9482f133503ed929788199e537096191d8270c4c.tar.gz |
*** empty log message ***
Diffstat (limited to 'src/vmsfns.c')
-rw-r--r-- | src/vmsfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vmsfns.c b/src/vmsfns.c index 68b941abe2f..512ab21679a 100644 --- a/src/vmsfns.c +++ b/src/vmsfns.c @@ -850,7 +850,7 @@ static Lisp_Object vms_trnlog (arg1, arg2) Lisp_Object arg1, arg2; { - char str[100]; + char str[256]; /* Max logical translation is 255 bytes. */ int status, symdsc[2]; int strdsc[2] = { sizeof (str), str }; short length, level; @@ -870,7 +870,7 @@ static Lisp_Object vms_symbol (arg1, arg2) Lisp_Object arg1, arg2; { - char str[100]; + char str[1025]; /* Max symbol translation is 1024 bytes. */ int status, symdsc[2]; int strdsc[2] = { sizeof (str), str }; short length, level; |