]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix typos in doc strings
authorRuslan Bekenev <furyinbox@gmail.com>
Fri, 19 May 2017 11:35:47 +0000 (14:35 +0300)
committerEli Zaretskii <eliz@gnu.org>
Fri, 19 May 2017 11:35:47 +0000 (14:35 +0300)
* 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)

lisp/mail/rfc2045.el
lisp/mail/rfc2047.el
lisp/mail/rfc2231.el

index f6000500e114f3fc3a940dd2988f8fd8c3c0421d..11a6151887a8ae183f56f3fd297abd7b37ed6b28 100644 (file)
@@ -28,7 +28,7 @@
 (require 'ietf-drums)
 
 (defun rfc2045-encode-string (param value)
-  "Return and PARAM=VALUE string encoded according to RFC2045."
+  "Return a PARAM=VALUE string encoded according to RFC2045."
   (if (or (string-match (concat "[" ietf-drums-no-ws-ctl-token "]") value)
          (string-match (concat "[" ietf-drums-tspecials "]") value)
          (string-match "[ \n\t]" value)
index bcbdc17631d4e41390b9b84ed9f0c6db59bc59d8..d276e2117f48270673ec5f24ea33884e3bb93f6d 100644 (file)
@@ -851,7 +851,7 @@ Point moves to the end of the region."
     (buffer-string)))
 
 (defun rfc2047-encode-parameter (param value)
-  "Return and PARAM=VALUE string encoded in the RFC2047-like style.
+  "Return a PARAM=VALUE string encoded in the RFC2047-like style.
 This is a substitution for the `rfc2231-encode-string' function, that
 is the standard but many mailers don't support it."
   (let ((rfc2047-encoding-type 'mime)
index ba972c7346058805e4f566373c3d24b67edf2a56..66f539f6986a5bebb67578ed0c6e25bdf706de92 100644 (file)
@@ -234,7 +234,7 @@ These look like:
        (decode-coding-string (buffer-string) coding-system)))))
 
 (defun rfc2231-encode-string (param value)
-  "Return and PARAM=VALUE string encoded according to RFC2231.
+  "Return a PARAM=VALUE string encoded according to RFC2231.
 Use `mml-insert-parameter' or `mml-insert-parameter-string' to insert
 the result of this function."
   (let ((control (ietf-drums-token-to-list ietf-drums-no-ws-ctl-token))