diff options
| author | Kenichi Handa | 2003-11-13 06:03:46 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2003-11-13 06:03:46 +0000 |
| commit | 9b40fbe6998f1c5611913207a8d3a8a960336e8b (patch) | |
| tree | 970ab04cd0502daf2d841fd095ce3a8eaf311674 /src | |
| parent | 2449d4d0a96fa4d9d399417f3f7b7328f6041107 (diff) | |
| download | emacs-9b40fbe6998f1c5611913207a8d3a8a960336e8b.tar.gz emacs-9b40fbe6998f1c5611913207a8d3a8a960336e8b.zip | |
(base64_encode_1): Fix previous change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 1 |
1 files changed, 1 insertions, 0 deletions
| @@ -3300,6 +3300,7 @@ base64_encode_1 (from, to, length, line_break, multibyte) | |||
| 3300 | if (CHAR_BYTE8_P (c)) | 3300 | if (CHAR_BYTE8_P (c)) |
| 3301 | c = CHAR_TO_BYTE8 (c); | 3301 | c = CHAR_TO_BYTE8 (c); |
| 3302 | else if (c >= 256) | 3302 | else if (c >= 256) |
| 3303 | return -1; | ||
| 3303 | i += bytes; | 3304 | i += bytes; |
| 3304 | } | 3305 | } |
| 3305 | else | 3306 | else |