diff options
| author | Kenichi Handa | 2003-03-23 02:08:35 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2003-03-23 02:08:35 +0000 |
| commit | 37ab321e4f7b6ddf17b701c92a24620218f50131 (patch) | |
| tree | 088258e6b61fd5f240ddb923c931a5af509f769b /src | |
| parent | 94ab35adb4732be2d717b1b1f67fdc88ca56cb8e (diff) | |
| download | emacs-37ab321e4f7b6ddf17b701c92a24620218f50131.tar.gz emacs-37ab321e4f7b6ddf17b701c92a24620218f50131.zip | |
(make_string_from_bytes, make_specified_string):
Prototypes adjusted.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 11 | ||||
| -rw-r--r-- | src/lisp.h | 4 |
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 @@ | |||
| 1 | 2003-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 | |||
| 1 | 2003-03-23 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 10 | 2003-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 | ||
| 212 | 2003-03-18 Kenichi Handa <handa@etlken2> | 221 | 2003-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)); | |||
| 2451 | extern Lisp_Object make_event_array P_ ((int, Lisp_Object *)); | 2451 | extern Lisp_Object make_event_array P_ ((int, Lisp_Object *)); |
| 2452 | extern Lisp_Object make_uninit_string P_ ((int)); | 2452 | extern Lisp_Object make_uninit_string P_ ((int)); |
| 2453 | extern Lisp_Object make_uninit_multibyte_string P_ ((int, int)); | 2453 | extern Lisp_Object make_uninit_multibyte_string P_ ((int, int)); |
| 2454 | extern Lisp_Object make_string_from_bytes P_ ((char *, int, int)); | 2454 | extern Lisp_Object make_string_from_bytes P_ ((const char *, int, int)); |
| 2455 | extern Lisp_Object make_specified_string P_ ((char *, int, int, int)); | 2455 | extern Lisp_Object make_specified_string P_ ((const char *, int, int, int)); |
| 2456 | EXFUN (Fpurecopy, 1); | 2456 | EXFUN (Fpurecopy, 1); |
| 2457 | extern Lisp_Object make_pure_string P_ ((char *, int, int, int)); | 2457 | extern Lisp_Object make_pure_string P_ ((char *, int, int, int)); |
| 2458 | extern Lisp_Object pure_cons P_ ((Lisp_Object, Lisp_Object)); | 2458 | extern Lisp_Object pure_cons P_ ((Lisp_Object, Lisp_Object)); |