From: Eli Zaretskii Date: Sat, 23 Feb 2002 18:44:30 +0000 (+0000) Subject: (run_pre_post_conversion_on_str): Add prototype. X-Git-Tag: emacs-21.2~49 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=feacf80c302c11fcb59073d309260f9d921d33d1;p=emacs.git (run_pre_post_conversion_on_str): Add prototype. --- diff --git a/src/ChangeLog b/src/ChangeLog index ff18805dc8f..6059351bb37 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2002-02-23 Eli Zaretskii + * coding.h (run_pre_post_conversion_on_str): Add prototype. + * xselect.c (selection_data_to_lisp_data): Fix last change. 2002-02-22 Eli Zaretskii diff --git a/src/coding.h b/src/coding.h index 2d514e37640..0e4a81e629e 100644 --- a/src/coding.h +++ b/src/coding.h @@ -620,6 +620,9 @@ extern void coding_restore_composition P_ ((struct coding_system *, Lisp_Object)); extern int code_convert_region P_ ((int, int, int, int, struct coding_system *, int, int)); +extern Lisp_Object run_pre_post_conversion_on_str P_ ((Lisp_Object, + struct coding_system *, + int)); extern int decoding_buffer_size P_ ((struct coding_system *, int)); extern int encoding_buffer_size P_ ((struct coding_system *, int)); extern void detect_coding P_ ((struct coding_system *, unsigned char *, int));