From: Kenichi Handa Date: Wed, 7 Apr 1999 05:40:54 +0000 (+0000) Subject: (base64_encode_1): Don't add unnecessary newline at the tail. X-Git-Tag: emacs-20.4~367 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e238283b3026015687185a498f5f00288f706db7;p=emacs.git (base64_encode_1): Don't add unnecessary newline at the tail. --- diff --git a/src/fns.c b/src/fns.c index 401789e2bab..10fbbdc5cc1 100644 --- 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; }