mutt stable branch with some hacks

Corrected various spelling mistakes (most of them reported by codespell).

+10 -10
+1 -1
INSTALL
··· 280 280 For the real fix, applying Sun patches # 105490-05 (linker 281 281 patch) and # 105210-17 (libc and malloc patch) from 282 282 sunsolve.sun.com has been reported to stop these problems 283 - from occuring. 283 + from occurring. 284 284 285 285 Linux 286 286
+1 -1
README.SECURITY
··· 19 19 20 20 - Backticks are handled specially when preparing % expandos for 21 21 mailcap entries. This fix will keep the current problem from 22 - occuring, but we are sure there are other possible mailcap entries 22 + occurring, but we are sure there are other possible mailcap entries 23 23 where this doesn't help. 24 24 25 25 - We have added a configuration variable named $mailcap_sanitize,
+1 -1
README.SSL
··· 97 97 openssl s_client -host <imap server> -port <port> -verify -debug -no_ssl2 98 98 openssl s_client -host <imap server> -port <port> -verify -debug -no_ssl3 99 99 100 - You can also combine the options until you get a successfull connect. Once 100 + You can also combine the options until you get a successful connect. Once 101 101 you know which options do not work, you can set the variables for non-working 102 102 protocols to know. The variables for the protocols are ssl_use_tlsv1, 103 103 ssl_use_sslv2, and ssl_use_sslv3.
+1 -1
TODO
··· 50 50 Note: This still requires some thought, since we'd have to store 51 51 per-entry data in the menu structure. As an alternative, we could 52 52 extend the tag method to do something to more general flags. The 53 - latter approach would make the implementation of propper 53 + latter approach would make the implementation of proper 54 54 tag-prefix behaviour more simple: Functions should only be applied 55 55 when a message is tagged and visible. Additionally, we must not 56 56 access a menu's max field directly any more: Adding an entry to a
+1 -1
configure.ac
··· 163 163 ]) 164 164 165 165 if test x$have_smime != xno ; then 166 - AC_DEFINE(CRYPT_BACKEND_CLASSIC_SMIME, 1, [Define if you want clasic S/MIME support.]) 166 + AC_DEFINE(CRYPT_BACKEND_CLASSIC_SMIME, 1, [Define if you want classic S/MIME support.]) 167 167 MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS smime.o crypt-mod-smime-classic.o" 168 168 SMIMEAUX_TARGET="smime_keys" 169 169 fi
+1 -1
curs_lib.c
··· 958 958 959 959 /* 960 960 * mutt_strwidth is like mutt_strlen except that it returns the width 961 - * refering to the number of characters cells. 961 + * referring to the number of character cells. 962 962 */ 963 963 964 964 int mutt_strwidth (const char *s)
+1 -1
help.c
··· 204 204 fputs (t1, f); 205 205 206 206 /* don't try to press string into one line with less than 40 characters. 207 - The double paranthesis avoid a gcc warning, sigh ... */ 207 + The double parenthesis avoids a gcc warning, sigh ... */ 208 208 if ((split = COLS < 40)) 209 209 { 210 210 col_a = col = 0;
+1 -1
imap/message.c
··· 547 547 * IMAP server doesn't know the message has been \Seen. So we capture 548 548 * the server's notion of 'read' and if it differs from the message info 549 549 * picked up in mutt_read_rfc822_header, we mark the message (and context 550 - * changed). Another possiblity: ignore Status on IMAP?*/ 550 + * changed). Another possibility: ignore Status on IMAP?*/ 551 551 read = h->read; 552 552 newenv = mutt_read_rfc822_header (msg->fp, h, 0, 0); 553 553 mutt_merge_envelopes(h->env, &newenv);
+1 -1
lib.c
··· 935 935 936 936 /* 937 937 * Write the concatened pathname (dir + "/" + fname) into dst. 938 - * The slash is ommitted when dir or fname is of 0 length. 938 + * The slash is omitted when dir or fname is of 0 length. 939 939 * Returns NULL on error or a pointer to dst otherwise. 940 940 */ 941 941 char *mutt_concatn_path (char *dst, size_t dstlen,
+1 -1
mh.c
··· 1583 1583 * number. Mutt does _not_ behave like this. 1584 1584 * 1585 1585 * Anyway, if this fails, the message is in the folder, so 1586 - * all what happens is that a concurrently runnung mutt will 1586 + * all what happens is that a concurrently running mutt will 1587 1587 * lose flag modifications. 1588 1588 */ 1589 1589