]> granicus.if.org Git - mutt/commitdiff
fix comment typos
authorSimon Ruderich <simon@ruderich.org>
Thu, 1 Apr 2010 17:10:21 +0000 (10:10 -0700)
committerSimon Ruderich <simon@ruderich.org>
Thu, 1 Apr 2010 17:10:21 +0000 (10:10 -0700)
attach.c
commands.c
filter.c
muttlib.c
send.c

index 238dbc2922edbcce34c987cf6f43ef927d8e1c9c..9e45cfdcaa7906640db30862215eca7164e1cc31 100644 (file)
--- a/attach.c
+++ b/attach.c
@@ -938,7 +938,7 @@ int mutt_decode_save_attachment (FILE *fp, BODY *m, char *path,
 
 /* Ok, the difference between send and receive:
  * recv: BODY->filename is a suggested name, and Context|HEADER points
- *       to the attachment in mailbox which is encooded
+ *       to the attachment in mailbox which is encoded
  * send: BODY->filename points to the un-encoded file which contains the 
  *       attachment
  */
index ebd0ca5044b29ea38690a165227aec2377369480..f9c20251514b95c8d34d3e65cc8e39035c770df3 100644 (file)
@@ -72,7 +72,7 @@ int mutt_display_message (HEADER *cur)
   mutt_parse_mime_message (Context, cur);
   mutt_message_hook (Context, cur, M_MESSAGEHOOK);
 
-  /* see if crytpo is needed for this message.  if so, we should exit curses */
+  /* see if crypto is needed for this message.  if so, we should exit curses */
   if (WithCrypto && cur->security)
   {
     if (cur->security & ENCRYPT)
index 8190a91313e1e370524a97e397d236f64c2074d4..91a4d756567813198335f5d20d8b5ecbdb43359f 100644 (file)
--- a/filter.c
+++ b/filter.c
@@ -26,7 +26,7 @@
 #include <stdlib.h>
 #include <sys/wait.h>
 
-/* Invokes a commmand on a pipe and optionally connects its stdin and stdout
+/* Invokes a command on a pipe and optionally connects its stdin and stdout
  * to the specified handles.
  */
 pid_t
index 1ba19ee7f6d01bce304e9f811081f0bf796322e7..c867ce9f8fc687cef40205b6a319f3d18837961e 100644 (file)
--- a/muttlib.c
+++ b/muttlib.c
@@ -1439,7 +1439,7 @@ void mutt_FormatString (char *dest,               /* output buffer */
 
 /* This function allows the user to specify a command to read stdout from in
    place of a normal file.  If the last character in the string is a pipe (|),
-   then we assume it is a commmand to run instead of a normal file. */
+   then we assume it is a command to run instead of a normal file. */
 FILE *mutt_open_read (const char *path, pid_t *thepid)
 {
   FILE *f;
diff --git a/send.c b/send.c
index c1482238e0a55069ac8989e704db3b80f5a5312b..b38d3996ef6f068e88ca276fac86fa226db7b1ca 100644 (file)
--- a/send.c
+++ b/send.c
@@ -1362,7 +1362,7 @@ ci_send_message (int flags,               /* send mode */
     if (WithCrypto && msg->security)
     {
       /* 
-       * When reypling / forwarding, use the original message's
+       * When replying / forwarding, use the original message's
        * crypto system.  According to the documentation,
        * smime_is_default should be disregarded here.
        * 
@@ -1434,7 +1434,7 @@ ci_send_message (int flags,               /* send mode */
      * don't want to do this when:
      * 1) we are sending a key/cert
      * 2) we are forwarding a message and the user doesn't want to edit it.
-     *    This is controled by the quadoption $forward_edit.  However, if
+     *    This is controlled by the quadoption $forward_edit.  However, if
      *    both $edit_headers and $autoedit are set, we want to ignore the
      *    setting of $forward_edit because the user probably needs to add the
      *    recipients.