diff options
| author | Richard M. Stallman | 1998-10-27 17:55:28 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-10-27 17:55:28 +0000 |
| commit | 46ac5b268d1703cd33ae433d92ea6b2ebcee62e8 (patch) | |
| tree | c6a07fd0192b88c9b26fcc3473cfffd2795087f2 /src | |
| parent | 15a9a50c39003356a2d5ee8b341b39d83fbf7bf4 (diff) | |
| download | emacs-46ac5b268d1703cd33ae433d92ea6b2ebcee62e8.tar.gz emacs-46ac5b268d1703cd33ae433d92ea6b2ebcee62e8.zip | |
(Fbase64_decode_string): Doc fix.
(Fbase64_decode_region, Fbase64_encode_string Fbase64_encode_region):
Likewise.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 8 |
1 files changed, 4 insertions, 4 deletions
| @@ -2806,7 +2806,7 @@ static int base64_decode_1 P_ ((const char *, char *, int)); | |||
| 2806 | 2806 | ||
| 2807 | DEFUN ("base64-encode-region", Fbase64_encode_region, Sbase64_encode_region, | 2807 | DEFUN ("base64-encode-region", Fbase64_encode_region, Sbase64_encode_region, |
| 2808 | 2, 3, "r", | 2808 | 2, 3, "r", |
| 2809 | "base64 encode the region between BEG and END.\n\ | 2809 | "Base64-encode the region between BEG and END.\n\ |
| 2810 | Return the length of the encoded text.\n\ | 2810 | Return the length of the encoded text.\n\ |
| 2811 | Optional third argument NO-LINE-BREAK means do not break long lines\n\ | 2811 | Optional third argument NO-LINE-BREAK means do not break long lines\n\ |
| 2812 | into shorter lines.") | 2812 | into shorter lines.") |
| @@ -2857,7 +2857,7 @@ into shorter lines.") | |||
| 2857 | 2857 | ||
| 2858 | DEFUN ("base64-encode-string", Fbase64_encode_string, Sbase64_encode_string, | 2858 | DEFUN ("base64-encode-string", Fbase64_encode_string, Sbase64_encode_string, |
| 2859 | 1, 1, 0, | 2859 | 1, 1, 0, |
| 2860 | "base64 encode STRING and return the result.") | 2860 | "Base64-encode STRING and return the result.") |
| 2861 | (string) | 2861 | (string) |
| 2862 | Lisp_Object string; | 2862 | Lisp_Object string; |
| 2863 | { | 2863 | { |
| @@ -2956,7 +2956,7 @@ base64_encode_1 (from, to, length, line_break) | |||
| 2956 | 2956 | ||
| 2957 | DEFUN ("base64-decode-region", Fbase64_decode_region, Sbase64_decode_region, | 2957 | DEFUN ("base64-decode-region", Fbase64_decode_region, Sbase64_decode_region, |
| 2958 | 2, 2, "r", | 2958 | 2, 2, "r", |
| 2959 | "base64 decode the region between BEG and END.\n\ | 2959 | "Base64-decode the region between BEG and END.\n\ |
| 2960 | Return the length of the decoded text.\n\ | 2960 | Return the length of the decoded text.\n\ |
| 2961 | If the region can't be decoded, return nil and don't modify the buffer.") | 2961 | If the region can't be decoded, return nil and don't modify the buffer.") |
| 2962 | (beg, end) | 2962 | (beg, end) |
| @@ -3014,7 +3014,7 @@ If the region can't be decoded, return nil and don't modify the buffer.") | |||
| 3014 | 3014 | ||
| 3015 | DEFUN ("base64-decode-string", Fbase64_decode_string, Sbase64_decode_string, | 3015 | DEFUN ("base64-decode-string", Fbase64_decode_string, Sbase64_decode_string, |
| 3016 | 1, 1, 0, | 3016 | 1, 1, 0, |
| 3017 | "base64 decode STRING and return the result.") | 3017 | "Base64-decode STRING and return the result.") |
| 3018 | (string) | 3018 | (string) |
| 3019 | Lisp_Object string; | 3019 | Lisp_Object string; |
| 3020 | { | 3020 | { |