From 977267c2e0218d6b182807ddf9b7c1d929c40bed Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 22 Apr 2010 08:04:13 +0000 Subject: * ext/**/*.[ch]: removed trailing spaces. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27437 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/iconv/iconv.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'ext/iconv') diff --git a/ext/iconv/iconv.c b/ext/iconv/iconv.c index c1d59c5fc6..964cfff7a0 100644 --- a/ext/iconv/iconv.c +++ b/ext/iconv/iconv.c @@ -26,20 +26,20 @@ * == Summary * * Ruby extension for charset conversion. - * + * * == Abstract * * Iconv is a wrapper class for the UNIX 95 iconv() function family, * which translates string between various encoding systems. - * + * * See Open Group's on-line documents for more details. * * iconv.h: http://www.opengroup.org/onlinepubs/007908799/xsh/iconv.h.html * * iconv_open(): http://www.opengroup.org/onlinepubs/007908799/xsh/iconv_open.html * * iconv(): http://www.opengroup.org/onlinepubs/007908799/xsh/iconv.html * * iconv_close(): http://www.opengroup.org/onlinepubs/007908799/xsh/iconv_close.html - * + * * Which coding systems are available is platform-dependent. - * + * * == Examples * * 1. Simple conversion between two charsets. @@ -622,7 +622,7 @@ get_iconv_opt(struct rb_iconv_opt_t *opt, VALUE options) * * Creates new code converter from a coding-system designated with +from+ * to another one designated with +to+. - * + * * === Parameters * * +to+:: encoding name for destination @@ -1104,7 +1104,7 @@ iconv_failure_success(VALUE self) * call-seq: failed * * Returns substring of the original string passed to Iconv that starts at the - * character caused the exception. + * character caused the exception. */ static VALUE iconv_failure_failed(VALUE self) @@ -1134,13 +1134,13 @@ iconv_failure_inspect(VALUE self) /* * Document-class: Iconv::InvalidEncoding - * + * * Requested coding-system is not available on this system. */ /* * Document-class: Iconv::IllegalSequence - * + * * Input conversion stopped due to an input byte that does not belong to * the input codeset, or the output codeset does not contain the * character. @@ -1148,20 +1148,20 @@ iconv_failure_inspect(VALUE self) /* * Document-class: Iconv::InvalidCharacter - * + * * Input conversion stopped due to an incomplete character or shift * sequence at the end of the input buffer. */ /* * Document-class: Iconv::OutOfRange - * + * * Iconv library internal error. Must not occur. */ /* * Document-class: Iconv::BrokenLibrary - * + * * Detected a bug of underlying iconv(3) libray. * * returns an error without setting errno properly */ -- cgit v1.2.3