diff options
| author | Richard M. Stallman | 2001-09-06 19:50:20 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-09-06 19:50:20 +0000 |
| commit | ae9b6b4a99dd216afb7bc8fac241a898576573da (patch) | |
| tree | 4b6e3b89da8e92c683f26c01f69f24f5b25dd166 | |
| parent | f4f65a420cbc948c05a7cddc500d546124228b64 (diff) | |
| download | emacs-ae9b6b4a99dd216afb7bc8fac241a898576573da.tar.gz emacs-ae9b6b4a99dd216afb7bc8fac241a898576573da.zip | |
Minor clarification.
| -rw-r--r-- | lispref/functions.texi | 8 | ||||
| -rw-r--r-- | lispref/text.texi | 8 |
2 files changed, 9 insertions, 7 deletions
diff --git a/lispref/functions.texi b/lispref/functions.texi index fa45e9ef11d..9f684593a98 100644 --- a/lispref/functions.texi +++ b/lispref/functions.texi | |||
| @@ -364,9 +364,11 @@ is @code{nil}. | |||
| 364 | There is no way to have required arguments following optional | 364 | There is no way to have required arguments following optional |
| 365 | ones---it would not make sense. To see why this must be so, suppose | 365 | ones---it would not make sense. To see why this must be so, suppose |
| 366 | that @code{c} in the example were optional and @code{d} were required. | 366 | that @code{c} in the example were optional and @code{d} were required. |
| 367 | Suppose three actual arguments are given; which variable would the third | 367 | Suppose three actual arguments are given; which variable would the |
| 368 | argument be for? Similarly, it makes no sense to have any more | 368 | third argument be for? Would it be used for the @var{c}, or for |
| 369 | arguments (either required or optional) after a @code{&rest} argument. | 369 | @var{d}? One can argue for both possibilities. Similarly, it makes |
| 370 | no sense to have any more arguments (either required or optional) | ||
| 371 | after a @code{&rest} argument. | ||
| 370 | 372 | ||
| 371 | Here are some examples of argument lists and proper calls: | 373 | Here are some examples of argument lists and proper calls: |
| 372 | 374 | ||
diff --git a/lispref/text.texi b/lispref/text.texi index 1cd8c14a85a..7129aa531e4 100644 --- a/lispref/text.texi +++ b/lispref/text.texi | |||
| @@ -3513,10 +3513,10 @@ all markers unrelocated. | |||
| 3513 | @section Base 64 Encoding | 3513 | @section Base 64 Encoding |
| 3514 | @cindex base 64 encoding | 3514 | @cindex base 64 encoding |
| 3515 | 3515 | ||
| 3516 | Base 64 code is used in email to encode a sequence of 8-bit bytes as a | 3516 | Base 64 code is used in email to encode a sequence of 8-bit bytes as |
| 3517 | longer sequence of @sc{ascii} graphic characters. It is defined in RFC | 3517 | a longer sequence of @sc{ascii} graphic characters. It is defined in |
| 3518 | 2045. This section describes the functions for converting to and from | 3518 | Internet RFC 2045. This section describes the functions for |
| 3519 | this code. | 3519 | converting to and from this code. |
| 3520 | 3520 | ||
| 3521 | @defun base64-encode-region beg end &optional no-line-break | 3521 | @defun base64-encode-region beg end &optional no-line-break |
| 3522 | @tindex base64-encode-region | 3522 | @tindex base64-encode-region |