diff options
| author | Ruslan Bekenev | 2017-05-19 14:35:47 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2017-05-19 14:35:47 +0300 |
| commit | b43c4616ccc9cbaf7bc1531d0e6a4a84227f339e (patch) | |
| tree | 04d8ed4c15933b43ef760c1a8d5b2fdb90a141c5 | |
| parent | c189986b241cbe79b0e027fa08bba710ac645bb3 (diff) | |
| download | emacs-b43c4616ccc9cbaf7bc1531d0e6a4a84227f339e.tar.gz emacs-b43c4616ccc9cbaf7bc1531d0e6a4a84227f339e.zip | |
Fix typos in doc strings
* lisp/mail/rfc2231.el (rfc2231-encode-string):
* lisp/mail/rfc2047.el (rfc2047-encode-parameter):
* lisp/mail/rfc2045.el (rfc2045-encode-string): Fix typos in doc
strings. (Bug#26103)
| -rw-r--r-- | lisp/mail/rfc2045.el | 2 | ||||
| -rw-r--r-- | lisp/mail/rfc2047.el | 2 | ||||
| -rw-r--r-- | lisp/mail/rfc2231.el | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mail/rfc2045.el b/lisp/mail/rfc2045.el index f6000500e11..11a6151887a 100644 --- a/lisp/mail/rfc2045.el +++ b/lisp/mail/rfc2045.el | |||
| @@ -28,7 +28,7 @@ | |||
| 28 | (require 'ietf-drums) | 28 | (require 'ietf-drums) |
| 29 | 29 | ||
| 30 | (defun rfc2045-encode-string (param value) | 30 | (defun rfc2045-encode-string (param value) |
| 31 | "Return and PARAM=VALUE string encoded according to RFC2045." | 31 | "Return a PARAM=VALUE string encoded according to RFC2045." |
| 32 | (if (or (string-match (concat "[" ietf-drums-no-ws-ctl-token "]") value) | 32 | (if (or (string-match (concat "[" ietf-drums-no-ws-ctl-token "]") value) |
| 33 | (string-match (concat "[" ietf-drums-tspecials "]") value) | 33 | (string-match (concat "[" ietf-drums-tspecials "]") value) |
| 34 | (string-match "[ \n\t]" value) | 34 | (string-match "[ \n\t]" value) |
diff --git a/lisp/mail/rfc2047.el b/lisp/mail/rfc2047.el index bcbdc17631d..d276e2117f4 100644 --- a/lisp/mail/rfc2047.el +++ b/lisp/mail/rfc2047.el | |||
| @@ -851,7 +851,7 @@ Point moves to the end of the region." | |||
| 851 | (buffer-string))) | 851 | (buffer-string))) |
| 852 | 852 | ||
| 853 | (defun rfc2047-encode-parameter (param value) | 853 | (defun rfc2047-encode-parameter (param value) |
| 854 | "Return and PARAM=VALUE string encoded in the RFC2047-like style. | 854 | "Return a PARAM=VALUE string encoded in the RFC2047-like style. |
| 855 | This is a substitution for the `rfc2231-encode-string' function, that | 855 | This is a substitution for the `rfc2231-encode-string' function, that |
| 856 | is the standard but many mailers don't support it." | 856 | is the standard but many mailers don't support it." |
| 857 | (let ((rfc2047-encoding-type 'mime) | 857 | (let ((rfc2047-encoding-type 'mime) |
diff --git a/lisp/mail/rfc2231.el b/lisp/mail/rfc2231.el index ba972c73460..66f539f6986 100644 --- a/lisp/mail/rfc2231.el +++ b/lisp/mail/rfc2231.el | |||
| @@ -234,7 +234,7 @@ These look like: | |||
| 234 | (decode-coding-string (buffer-string) coding-system))))) | 234 | (decode-coding-string (buffer-string) coding-system))))) |
| 235 | 235 | ||
| 236 | (defun rfc2231-encode-string (param value) | 236 | (defun rfc2231-encode-string (param value) |
| 237 | "Return and PARAM=VALUE string encoded according to RFC2231. | 237 | "Return a PARAM=VALUE string encoded according to RFC2231. |
| 238 | Use `mml-insert-parameter' or `mml-insert-parameter-string' to insert | 238 | Use `mml-insert-parameter' or `mml-insert-parameter-string' to insert |
| 239 | the result of this function." | 239 | the result of this function." |
| 240 | (let ((control (ietf-drums-token-to-list ietf-drums-no-ws-ctl-token)) | 240 | (let ((control (ietf-drums-token-to-list ietf-drums-no-ws-ctl-token)) |