]> git.eshelyaron.com Git - emacs.git/commitdiff
(base64_encode_1): Don't add unnecessary newline at the tail.
authorKenichi Handa <handa@m17n.org>
Wed, 7 Apr 1999 05:40:54 +0000 (05:40 +0000)
committerKenichi Handa <handa@m17n.org>
Wed, 7 Apr 1999 05:40:54 +0000 (05:40 +0000)
src/fns.c

index 401789e2bab3583e5436c96d0a6e07237940e5cb..10fbbdc5cc18f4c1cbcfc3a4223dfcf3a170c4e6 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -2999,12 +2999,6 @@ base64_encode_1 (from, to, length, line_break)
       *e++ = base64_value_to_char[0x3f & c];
     }
 
-  /* Complete last partial line.  */
-
-  if (line_break)
-    if (counter > 0)
-      *e++ = '\n';
-
   return e - to;
 }