From 06c6ab430b223f6923fe74a4b8d11f3e626848a8 Mon Sep 17 00:00:00 2001 From: Eduardo Chappa Date: Wed, 15 Jan 2020 21:41:39 -0700 Subject: * Fix a number of misspellings in the source code of Alpine. I hav only fixed those that belong to the source code of Alpine and do not come from an external source. List contributed by Jens Schleusener. --- contrib/carmel/c-client/carmel.c | 6 +++--- contrib/carmel/c-client/carmel2.c | 28 ++++++++++++++-------------- contrib/carmel/doc/todo | 2 +- contrib/carmel/pine/filter.c.patch | 2 +- 4 files changed, 19 insertions(+), 19 deletions(-) (limited to 'contrib/carmel') diff --git a/contrib/carmel/c-client/carmel.c b/contrib/carmel/c-client/carmel.c index 5265097d..5e2ff927 100644 --- a/contrib/carmel/c-client/carmel.c +++ b/contrib/carmel/c-client/carmel.c @@ -183,7 +183,7 @@ carmel_isvalid (name) close(fd); - for(p = carmel_20k_buf; *p && !isspace(*p); p++); /* frist word */ + for(p = carmel_20k_buf; *p && !isspace(*p); p++); /* first word */ for(; *p && isspace(*p); p++); /* space */ lcase(p); /* lower case the "index" */ if(!*p || strncmp(p, "index", 5)) @@ -402,7 +402,7 @@ carmel_create(stream, mailbox) /*---------------------------------------------------------------------- Delete a carmel mailbox, and it's carmel2 index -Args: stream -- unsed here +Args: stream -- unused here mailbox -- FQN of mailbox to delete Returns: NIL -- if delete fails @@ -1042,7 +1042,7 @@ Args: local -- Fake CARMELLOCAL structure e -- envelope mc -- MESSAGECACHE entry -Retuns: -1 on failure +Returns: -1 on failure ----*/ long carmel_copy(local, mailbox, e, mc) diff --git a/contrib/carmel/c-client/carmel2.c b/contrib/carmel/c-client/carmel2.c index c56f8900..4f71a187 100644 --- a/contrib/carmel/c-client/carmel2.c +++ b/contrib/carmel/c-client/carmel2.c @@ -60,7 +60,7 @@ it and to be efficient for use by the program. Routines and data structures ---------------------------- -C-CLIENT INTERFACE FUCTIONS +C-CLIENT INTERFACE FUNCTIONS carmel2_valid - check to see if a mailbox is valid for carmel2 mail files carmel2_isvalid - actual work of checking carmel2_find - generate list of carmel2 mailboxes @@ -105,7 +105,7 @@ SUPPORT FUNCTIONS carmel_readmsg - Read a message file into memory, header text or both carmel_spool_mail - Get new mail out of spoold mail file - carmel_copy_msg_file - Make copy of messsage file when copying (unused) + carmel_copy_msg_file - Make copy of message file when copying (unused) carmel2_lock - Lock a carmel index for read or write carmel2_unlock - Unlock a carmel index @@ -749,7 +749,7 @@ carmel2_fetchflags(stream, sequence) Carmel mail fetch message structure Args: stream -- stream to get structure for msgno -- Message number to fetch data for - body -- Pointer to place to return body strucuture, may be NULL + body -- Pointer to place to return body structure, may be NULL If the request is the for the same msgno as last time, the saved copy of the envelope and/or body structure is returned. @@ -878,7 +878,7 @@ Args: stream -- msgno Returns: pointer to text of mail header. Returned string is null terminated - and consists of internel storage. It will be valid till the next + and consists of internal storage. It will be valid till the next call to mail_fetchheader() or mail_fetchtext(). An empty string is returned if the fetch fails. ----*/ @@ -906,7 +906,7 @@ Args: stream -- msgno Returns: pointer to text of mail message. Returned string is null terminated - and consists of internel storage. It will be valid till the next + and consists of internal storage. It will be valid till the next call to mail_fetchheader() or mail_fetchtext(). An empty string is returned if the fetch fails. ----*/ @@ -1964,7 +1964,7 @@ Args: stream file_size -- The file size if known (saves a stat) file -- name of the file to read -Returns buffer with text stored in internel buffer. The Carmel2 format +Returns buffer with text stored in internal buffer. The Carmel2 format buffers the text of the current message and header in an internal buffer. The buffer never shrinks and is expanded as needed, up to a maximum. The text in the buffer is in CRLF format and is read in line @@ -2560,7 +2560,7 @@ carmel2_copy_msg_file(stream, orig_file_number, new_mailbox) char *file_name; int wide, e, new_file_num, n, orig_fd, new_fd; - /*---- Open the orginal file ----*/ + /*---- Open the original file ----*/ wide = 0; file_name = (*LOCAL->calc_paths)(CalcPathCarmel2Data, new_mailbox,orig_file_number); @@ -2628,7 +2628,7 @@ Args: stream -- Mail stream we're operating on file -- Mail file name write -- Flag indicating we want write access -Retuns: -1 if lock fails, 0 if it succeeds +Returns: -1 if lock fails, 0 if it succeeds - There are two locks. Plain locks and write locks. They are created about the same way, but have different names. The time out on the write @@ -2636,13 +2636,13 @@ Retuns: -1 if lock fails, 0 if it succeeds - Hitching (links in file system) post locking is used so it will work across NFS. Flock() could be used as it has two advantages. First it - is more efficient, second the locks will disolve automatically when the + is more efficient, second the locks will dissolve automatically when the process dies. The efficiency is not of great concern, and the process should not (theoretically) die unless it crashes due to a bug or it is abnormally terminated. The advantage of locking across NFS is considered greater than the advantages of flock(). -- The mod time of the lock file is updated everytime mail_check() +- The mod time of the lock file is updated every time mail_check() or mail_ping() is called and the mod time on the lock file is recorded. This is so it can be determined that the lock file is current. @@ -2650,7 +2650,7 @@ Retuns: -1 if lock fails, 0 if it succeeds encountered it is assumed the lock is old and should be overridden (because the process crashed or was killed). -- Everytime the mod time on the lock file is updated (on calls to +- Every time the mod time on the lock file is updated (on calls to mail_check() and mail_ping()), the mod time of the lock file is checked against the record of what it was last set to. If the mod times don't match the lock has been broken and overridden. Then the original @@ -3911,10 +3911,10 @@ struct time_zone_names { /*---------------------------------------------------------------------- Parse a date string into into a structure -Args: mc -- mesage cache to with structure to receive data +Args: mc -- message cache to with structure to receive data given_date -- full header with date string somewhere to be found -This parses a number of date formats and produces a cannonical date in +This parses a number of date formats and produces a canonical date in a structure. The basic format is: dd mm yy hh:mm:ss.t tz @@ -4037,7 +4037,7 @@ carmel2_rfc822_date(mc, given_date) while(*p && (*p == '-' || *p == ',' || isspace(*p))) p++; } else { - /* Something wierd, skip it and try to resynch */ + /* Something weird, skip it and try to resynch */ while(*p && !isspace(*p) && *p != ',' && *p != '-') p++; while(*p && (isspace(*p) || *p == ',' || *p == '-')) diff --git a/contrib/carmel/doc/todo b/contrib/carmel/doc/todo index acf99f19..c161a9c4 100644 --- a/contrib/carmel/doc/todo +++ b/contrib/carmel/doc/todo @@ -21,7 +21,7 @@ Size Where What 3 c Initial account set up 10 c Kiss of death to steal write access from another running Pine 6 C Full IMAP searching in Carmel (not used by Pine yet) - 6 c Carmel driver performance enhancments (for folders > 500 msgs) + 6 c Carmel driver performance enhancements (for folders > 500 msgs) 6* ci Auto updating deleted status for folder open by several users 3 C Doesn't incorporate new mail on start up like other IMAPware 6 I/C Handling of non-FQN's via IMAP (will solve ECS problems above) diff --git a/contrib/carmel/pine/filter.c.patch b/contrib/carmel/pine/filter.c.patch index 094fc9ae..02e21166 100644 --- a/contrib/carmel/pine/filter.c.patch +++ b/contrib/carmel/pine/filter.c.patch @@ -90,7 +90,7 @@ + p += strlen(p); + stack_str[stack][0] = '\0'; + } -+ if(two_underline) { /* In case '_' occured near end of line */ ++ if(two_underline) { /* In case '_' occurred near end of line */ + strcpy(p, "<\\underline>"); + p += strlen(p); + } -- cgit v1.2.3-70-g09d2