changeset 24582:1dc1bccbb4cc

(base64_encode_1): Don't add unnecessary newline at the tail.
author Kenichi Handa <handa@m17n.org>
date Wed, 07 Apr 1999 05:40:54 +0000
parents a0b1c8887910
children 0e5c5bd9b99d
files src/fns.c
diffstat 1 files changed, 0 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/src/fns.c	Tue Apr 06 23:41:21 1999 +0000
+++ b/src/fns.c	Wed Apr 07 05:40:54 1999 +0000
@@ -2999,12 +2999,6 @@
       *e++ = base64_value_to_char[0x3f & c];
     }
 
-  /* Complete last partial line.  */
-
-  if (line_break)
-    if (counter > 0)
-      *e++ = '\n';
-
   return e - to;
 }