Mercurial > emacs
diff src/alloc.c @ 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 | fdeb795fc0ec |
| children | 16fdb9f87d89 |
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; {
