From 45f6fbf339e3666ea1e64d9e13fd40c61977248d Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 29 May 2010 18:51:39 +0000 Subject: * removed trailing spaces. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28085 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- pack.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'pack.c') diff --git a/pack.c b/pack.c index 3a6b3a68d0..245c940237 100644 --- a/pack.c +++ b/pack.c @@ -330,7 +330,7 @@ static unsigned long utf8_to_uv(const char*,long*); * s | Integer | 16-bit signed integer, native endian (int16_t) * l | Integer | 32-bit signed integer, native endian (int32_t) * q | Integer | 64-bit signed integer, native endian (int64_t) - * | | + * | | * S_ | Integer | unsigned short, native endian * I, I_ | Integer | unsigned int, native endian * L_ | Integer | unsigned long, native endian @@ -346,7 +346,7 @@ static unsigned long utf8_to_uv(const char*,long*); * | | * U | Integer | UTF-8 character * w | Integer | BER-compressed integer - * + * * Float | | * Directive | | Meaning * ------------------------------------------------------------------------ @@ -356,7 +356,7 @@ static unsigned long utf8_to_uv(const char*,long*); * e | Float | single-precision float, little-endian byte order * G | Float | double-precision float, network (big-endian) byte order * g | Float | single-precision float, network (big-endian) byte order - * + * * String | | * Directive | | Meaning * ------------------------------------------------------------------------ @@ -373,7 +373,7 @@ static unsigned long utf8_to_uv(const char*,long*); * | | (if count is 0, no line feed are added, see RFC 4648) * P | String | pointer to a structure (fixed-length string) * p | String | pointer to a null-terminated string - * + * * Misc. | | * Directive | | Meaning * ------------------------------------------------------------------------ @@ -1258,7 +1258,7 @@ infected_str_new(const char *ptr, long len, VALUE str) * | | * U | Integer | UTF-8 character * w | Integer | BER-compressed integer (see Array.pack) - * + * * Float | | * Directive | Returns | Meaning * -------------------------------------------------------------- @@ -1268,7 +1268,7 @@ infected_str_new(const char *ptr, long len, VALUE str) * e | Float | single-precision float, little-endian byte order * G | Float | double-precision float, network (big-endian) byte order * g | Float | single-precision float, network (big-endian) byte order - * + * * String | | * Directive | Returns | Meaning * -------------------------------------------------------------- @@ -1285,7 +1285,7 @@ infected_str_new(const char *ptr, long len, VALUE str) * | | base64 encoded string (RFC 4648) if followed by 0 * P | String | pointer to a structure (fixed-length string) * p | String | pointer to a null-terminated string - * + * * Misc. | | * Directive | Returns | Meaning * -------------------------------------------------------------- @@ -1554,7 +1554,7 @@ pack_unpack(VALUE str, VALUE fmt) integer_size = QUAD_SIZE; bigendian_p = BIGENDIAN_P(); goto unpack_integer; - + case 'Q': signed_p = 0; integer_size = QUAD_SIZE; -- cgit v1.2.3