diff options
author | Kenichi Handa <handa@m17n.org> | 2003-03-23 02:07:13 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2003-03-23 02:07:13 +0000 |
commit | fcbb914bcd075165194d43a1552014a51d4d5cb9 (patch) | |
tree | be3b962401ca54be3707f052e502ffd7adbd0345 /src | |
parent | e33c01bb57a63b0dc4fb31cf7e1e90940ee1df02 (diff) | |
download | emacs-fcbb914bcd075165194d43a1552014a51d4d5cb9.tar.gz emacs-fcbb914bcd075165194d43a1552014a51d4d5cb9.tar.bz2 emacs-fcbb914bcd075165194d43a1552014a51d4d5cb9.zip |
(make_string_from_bytes): Add `const' for the arg
CONTENTS.
(make_specified_string): Likewise.
Diffstat (limited to 'src')
-rw-r--r-- | src/alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c index 2c1d09ac43e..0fc3198b773 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -1805,7 +1805,7 @@ make_multibyte_string (contents, nchars, nbytes) 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 @@ make_string_from_bytes (contents, nchars, nbytes) Lisp_Object make_specified_string (contents, nchars, nbytes, multibyte) - char *contents; + const char *contents; int nchars, nbytes; int multibyte; { |