seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=6f0739780b2640d507b1379f6f1a0c18aec57865
commit 6f0739780b2640d507b1379f6f1a0c18aec57865 Author: Daniel Juyung Seo <seojuyu...@gmail.com> Date: Fri Oct 25 14:05:09 2013 +0900 elm_entry_common.h: added more description to elm_entry_utf8_to_markup api. --- src/lib/elm_entry_common.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/lib/elm_entry_common.h b/src/lib/elm_entry_common.h index 1f79b31..3c49e8b 100644 --- a/src/lib/elm_entry_common.h +++ b/src/lib/elm_entry_common.h @@ -240,6 +240,11 @@ EAPI char *elm_entry_markup_to_utf8(const char *s); * @param s The string (in UTF-8) to be converted * @return The converted string (in markup). It should be freed. * + * For example, passing "<align=center>hello</align>>" will return + * "<align=center>hello</align> &gt;". This is useful when you + * want to display "&" in label, entry, and some widgets which use textblock + * internally. + * * @ingroup Entry */ EAPI char *elm_entry_utf8_to_markup(const char *s); --