From 37ab321e4f7b6ddf17b701c92a24620218f50131 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Sun, 23 Mar 2003 02:08:35 +0000 Subject: [PATCH] (make_string_from_bytes, make_specified_string): Prototypes adjusted. --- src/ChangeLog | 11 ++++++++++- src/lisp.h | 4 ++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 3ee8cce1a3..6d722e521f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,12 @@ +2003-03-23 Kenichi Handa + + * 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,Ad(Brv * xdisp.c (get_glyph_string_clip_rect): Removed ; at end of #endif @@ -209,7 +218,7 @@ * gtkutil.h: Removed xg_ignore_next_thumb. -2003-03-18 Kenichi Handa +2003-03-18 Kenichi Handa * coding.c (Vchar_coding_system_table): Remove this variable. (Vcoding_system_safe_chars): New variable. diff --git a/src/lisp.h b/src/lisp.h index 6c3d9cfe6f..80e6064f05 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -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)); -- 2.20.1