Mercurial > emacs
changeset 50274:a617ca0d5d85
(make_string_from_bytes): Add `const' for the arg
CONTENTS.
(make_specified_string): Likewise.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Sun, 23 Mar 2003 02:07:13 +0000 |
parents | ea06392567c0 |
children | 80c3a24e73d4 |
files | src/alloc.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/alloc.c Sun Mar 23 01:58:30 2003 +0000 +++ b/src/alloc.c Sun Mar 23 02:07:13 2003 +0000 @@ -1805,7 +1805,7 @@ Lisp_Object make_string_from_bytes (contents, nchars, nbytes) - char *contents; + const char *contents; int nchars, nbytes; { register Lisp_Object val; @@ -1824,7 +1824,7 @@ Lisp_Object make_specified_string (contents, nchars, nbytes, multibyte) - char *contents; + const char *contents; int nchars, nbytes; int multibyte; {