]> git.eshelyaron.com Git - emacs.git/commitdiff
(make_string_from_bytes, make_specified_string):
authorKenichi Handa <handa@m17n.org>
Sun, 23 Mar 2003 02:08:35 +0000 (02:08 +0000)
committerKenichi Handa <handa@m17n.org>
Sun, 23 Mar 2003 02:08:35 +0000 (02:08 +0000)
Prototypes adjusted.

src/ChangeLog
src/lisp.h

index 3ee8cce1a3ea4fa9b9030ad3e97ae8741314549f..6d722e521f627319515ba466ee9dc60973600562 100644 (file)
@@ -1,3 +1,12 @@
+2003-03-23  Kenichi Handa  <handa@m17n.org>
+
+       * alloc.c (make_string_from_bytes): Add `const' for the arg
+       CONTENTS.
+       (make_specified_string): Likewise.
+
+       * lisp.h (make_string_from_bytes, make_specified_string):
+       Prototypes adjusted.
+
 2003-03-23  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
 
        * xdisp.c (get_glyph_string_clip_rect): Removed ; at end of #endif
 
        * gtkutil.h: Removed xg_ignore_next_thumb.
 
-2003-03-18  Kenichi Handa  <handa@etlken2>
+2003-03-18  Kenichi Handa  <handa@m17n.org>
 
        * coding.c (Vchar_coding_system_table): Remove this variable.
        (Vcoding_system_safe_chars): New variable.
index 6c3d9cfe6fde1b724d9204cdd782f027f12e25f8..80e6064f057568dd3046fd8aa1bdc06060946e10 100644 (file)
@@ -2451,8 +2451,8 @@ extern Lisp_Object make_multibyte_string P_ ((const char *, int, int));
 extern Lisp_Object make_event_array P_ ((int, Lisp_Object *));
 extern Lisp_Object make_uninit_string P_ ((int));
 extern Lisp_Object make_uninit_multibyte_string P_ ((int, int));
-extern Lisp_Object make_string_from_bytes P_ ((char *, int, int));
-extern Lisp_Object make_specified_string P_ ((char *, int, int, int));
+extern Lisp_Object make_string_from_bytes P_ ((const char *, int, int));
+extern Lisp_Object make_specified_string P_ ((const char *, int, int, int));
 EXFUN (Fpurecopy, 1);
 extern Lisp_Object make_pure_string P_ ((char *, int, int, int));
 extern Lisp_Object pure_cons P_ ((Lisp_Object, Lisp_Object));