]> git.eshelyaron.com Git - emacs.git/commitdiff
(epg-context-include-certs): Reflow docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 5 Mar 2008 12:53:32 +0000 (12:53 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 5 Mar 2008 12:53:32 +0000 (12:53 +0000)
(epg-start-sign-keys, epg-sign-keys, epg-context-armor, epg-context-signers,
epg-context-sig-notations, epg-context-set-armor, epg-context-set-signers,
epg-context-set-sig-notations, epg-make-import-status, epg-make-import-result,
epg-start-delete-keys): Fix typos in docstrings.
(epg-start-sign-keys, epg-sign-keys): Fix typos in obsolescence declarations.

lisp/ChangeLog
lisp/epg.el

index bd2dbf465d59e9774182cda8ec471fa5dce322d4..f54e1710511eef2174aa2a685fe50b2a7d196c4c 100644 (file)
@@ -1,5 +1,14 @@
 2008-03-05  Juanma Barranquero  <lekktu@gmail.com>
 
+       * epg.el (epg-context-include-certs): Reflow docstring.
+       (epg-start-sign-keys, epg-sign-keys, epg-context-armor)
+       (epg-context-signers, epg-context-sig-notations, epg-context-set-armor)
+       (epg-context-set-signers, epg-context-set-sig-notations)
+       (epg-make-import-status, epg-make-import-result)
+       (epg-start-delete-keys): Fix typos in docstrings.
+       (epg-start-sign-keys, epg-sign-keys):
+       Fix typos in obsolescence declarations.
+
        * iswitchb.el: Don't check for `cadr' and `last'.
        (iswitchb-define-mode-map, iswitchb-default-keybindings):
        Add obsolescence declaration and remove redundant info from docstring.
index cc07d6201d60e970dbba5b0e5ff816489ae6781a..d7cd21e2ea575a24dc43842870c94c065c2afa1f 100644 (file)
   (aref (cdr context) 0))
 
 (defun epg-context-armor (context)
-  "Return t if the output shouled be ASCII armored in CONTEXT."
+  "Return t if the output should be ASCII armored in CONTEXT."
   (unless (eq (car-safe context) 'epg-context)
     (signal 'wrong-type-argument (list 'epg-context-p context)))
   (aref (cdr context) 1))
   (aref (cdr context) 2))
 
 (defun epg-context-include-certs (context)
-  "Return how many certificates should be included in an S/MIME signed
-message."
+  "Return how many certificates should be included in an S/MIME signed message."
   (unless (eq (car-safe context) 'epg-context)
     (signal 'wrong-type-argument (list 'epg-context-p context)))
   (aref (cdr context) 3))
@@ -247,13 +246,13 @@ message."
   (aref (cdr context) 8))
 
 (defun epg-context-signers (context)
-  "Return the list of key-id for singning."
+  "Return the list of key-id for signing."
   (unless (eq (car-safe context) 'epg-context)
     (signal 'wrong-type-argument (list 'epg-context-p context)))
   (aref (cdr context) 9))
 
 (defun epg-context-sig-notations (context)
-  "Return the list of notations for singning."
+  "Return the list of notations for signing."
   (unless (eq (car-safe context) 'epg-context)
     (signal 'wrong-type-argument (list 'epg-context-p context)))
   (aref (cdr context) 10))
@@ -291,7 +290,7 @@ This function is for internal use only."
   (aset (cdr context) 0 protocol))
 
 (defun epg-context-set-armor (context armor)
-  "Specify if the output shouled be ASCII armored in CONTEXT."
+  "Specify if the output should be ASCII armored in CONTEXT."
   (unless (eq (car-safe context) 'epg-context)
     (signal 'wrong-type-argument (list 'epg-context-p context)))
   (aset (cdr context) 1 armor))
@@ -342,13 +341,13 @@ If optional argument HANDBACK is specified, it is passed to PROGRESS-CALLBACK."
   (aset (cdr context) 8 progress-callback))
 
 (defun epg-context-set-signers (context signers)
-  "Set the list of key-id for singning."
+  "Set the list of key-id for signing."
   (unless (eq (car-safe context) 'epg-context)
     (signal 'wrong-type-argument (list 'epg-context-p context)))
   (aset (cdr context) 9 signers))
 
 (defun epg-context-set-sig-notations (context notations)
-  "Set the list of notations for singning."
+  "Set the list of notations for signing."
   (unless (eq (car-safe context) 'epg-context)
     (signal 'wrong-type-argument (list 'epg-context-p context)))
   (aset (cdr context) 10 notations))
@@ -786,7 +785,7 @@ This function is for internal use only."
 
 (defun epg-make-import-status (fingerprint &optional reason new user-id
                                           signature sub-key secret)
-  "Return a import status object."
+  "Return an import status object."
   (cons 'epg-import-status (vector fingerprint reason new user-id signature
                                   sub-key secret)))
 
@@ -838,7 +837,7 @@ This function is for internal use only."
                                          secret-read secret-imported
                                          secret-unchanged not-imported
                                          imports)
-  "Return a import result object."
+  "Return an import result object."
   (cons 'epg-import-result (vector considered no-user-id imported imported-rsa
                                   unchanged new-user-ids new-sub-keys
                                   new-signatures new-revocations secret-read
@@ -2435,7 +2434,7 @@ KEYS is a list of key IDs"
 
 ;;;###autoload
 (defun epg-start-delete-keys (context keys &optional allow-secret)
-  "Initiate an delete keys operation.
+  "Initiate a delete keys operation.
 
 If you use this function, you will need to wait for the completion of
 `epg-gpg-program' by using `epg-wait-for-completion' and call
@@ -2488,7 +2487,7 @@ If you are unsure, use synchronous version of this function
                              (epg-sub-key-id
                               (car (epg-key-sub-key-list key))))
                            keys))))
-(make-obsolete 'epg-start-sign-keys "Do not use.")
+(make-obsolete 'epg-start-sign-keys "do not use.")
 
 ;;;###autoload
 (defun epg-sign-keys (context keys &optional local)
@@ -2501,7 +2500,7 @@ If you are unsure, use synchronous version of this function
            (error "Sign keys failed: %S"
                   (epg-context-result-for context 'error))))
     (epg-reset context)))
-(make-obsolete 'epg-sign-keys "Do not use.")
+(make-obsolete 'epg-sign-keys "do not use.")
 
 ;;;###autoload
 (defun epg-start-generate-key (context parameters)