aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2003-03-23 02:08:35 +0000
committerKenichi Handa2003-03-23 02:08:35 +0000
commit37ab321e4f7b6ddf17b701c92a24620218f50131 (patch)
tree088258e6b61fd5f240ddb923c931a5af509f769b /src
parent94ab35adb4732be2d717b1b1f67fdc88ca56cb8e (diff)
downloademacs-37ab321e4f7b6ddf17b701c92a24620218f50131.tar.gz
emacs-37ab321e4f7b6ddf17b701c92a24620218f50131.zip
(make_string_from_bytes, make_specified_string):
Prototypes adjusted.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog11
-rw-r--r--src/lisp.h4
2 files changed, 12 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 3ee8cce1a3e..6d722e521f6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,12 @@
12003-03-23 Kenichi Handa <handa@m17n.org>
2
3 * alloc.c (make_string_from_bytes): Add `const' for the arg
4 CONTENTS.
5 (make_specified_string): Likewise.
6
7 * lisp.h (make_string_from_bytes, make_specified_string):
8 Prototypes adjusted.
9
12003-03-23 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> 102003-03-23 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
2 11
3 * xdisp.c (get_glyph_string_clip_rect): Removed ; at end of #endif 12 * xdisp.c (get_glyph_string_clip_rect): Removed ; at end of #endif
@@ -209,7 +218,7 @@
209 218
210 * gtkutil.h: Removed xg_ignore_next_thumb. 219 * gtkutil.h: Removed xg_ignore_next_thumb.
211 220
2122003-03-18 Kenichi Handa <handa@etlken2> 2212003-03-18 Kenichi Handa <handa@m17n.org>
213 222
214 * coding.c (Vchar_coding_system_table): Remove this variable. 223 * coding.c (Vchar_coding_system_table): Remove this variable.
215 (Vcoding_system_safe_chars): New variable. 224 (Vcoding_system_safe_chars): New variable.
diff --git a/src/lisp.h b/src/lisp.h
index 6c3d9cfe6fd..80e6064f057 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -2451,8 +2451,8 @@ extern Lisp_Object make_multibyte_string P_ ((const char *, int, int));
2451extern Lisp_Object make_event_array P_ ((int, Lisp_Object *)); 2451extern Lisp_Object make_event_array P_ ((int, Lisp_Object *));
2452extern Lisp_Object make_uninit_string P_ ((int)); 2452extern Lisp_Object make_uninit_string P_ ((int));
2453extern Lisp_Object make_uninit_multibyte_string P_ ((int, int)); 2453extern Lisp_Object make_uninit_multibyte_string P_ ((int, int));
2454extern Lisp_Object make_string_from_bytes P_ ((char *, int, int)); 2454extern Lisp_Object make_string_from_bytes P_ ((const char *, int, int));
2455extern Lisp_Object make_specified_string P_ ((char *, int, int, int)); 2455extern Lisp_Object make_specified_string P_ ((const char *, int, int, int));
2456EXFUN (Fpurecopy, 1); 2456EXFUN (Fpurecopy, 1);
2457extern Lisp_Object make_pure_string P_ ((char *, int, int, int)); 2457extern Lisp_Object make_pure_string P_ ((char *, int, int, int));
2458extern Lisp_Object pure_cons P_ ((Lisp_Object, Lisp_Object)); 2458extern Lisp_Object pure_cons P_ ((Lisp_Object, Lisp_Object));