summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2020-01-15 21:41:39 -0700
committerEduardo Chappa <chappa@washington.edu>2020-01-15 21:41:39 -0700
commit06c6ab430b223f6923fe74a4b8d11f3e626848a8 (patch)
tree2b483acf3ec2da573992c20b766a480e22f4c45a /contrib
parent9822842646bc2b940d4b98a260ee4e3ac26fce57 (diff)
downloadalpine-06c6ab430b223f6923fe74a4b8d11f3e626848a8.tar.xz
* 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.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/carmel/c-client/carmel.c6
-rw-r--r--contrib/carmel/c-client/carmel2.c28
-rw-r--r--contrib/carmel/doc/todo2
-rw-r--r--contrib/carmel/pine/filter.c.patch2
-rw-r--r--contrib/ports/sequent_ptx_4.4.64
-rw-r--r--contrib/ports/vms/readme.vms2
-rwxr-xr-xcontrib/utils/txtcc.sh2
7 files changed, 23 insertions, 23 deletions
diff --git a/contrib/carmel/c-client/carmel.c b/contrib/carmel/c-client/carmel.c
index 5265097..5e2ff92 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 c56f890..4f71a18 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 acf99f1..c161a9c 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 094fc9a..02e2116 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);
+ }
diff --git a/contrib/ports/sequent_ptx_4.4.6 b/contrib/ports/sequent_ptx_4.4.6
index 064ed46..c631fcd 100644
--- a/contrib/ports/sequent_ptx_4.4.6
+++ b/contrib/ports/sequent_ptx_4.4.6
@@ -75,7 +75,7 @@ diff -cr pine.dist/pine/cmplhlp2.sh pine4.20/pine/cmplhlp2.sh
! awk ' BEGIN { printf("\n\n\t\t/*\n");
- printf("\t\t * AUTMATICALLY GENERATED FILE!\n");
+ printf("\t\t * AUTOMATICALLY GENERATED FILE!\n");
printf("\t\t * DO NOT EDIT!!\n\t\t */\n\n\n");
printf("#define\tHelpType\tchar **\n");
--- 44,50 ----
@@ -83,7 +83,7 @@ diff -cr pine.dist/pine/cmplhlp2.sh pine4.20/pine/cmplhlp2.sh
! nawk ' BEGIN { printf("\n\n\t\t/*\n");
- printf("\t\t * AUTMATICALLY GENERATED FILE!\n");
+ printf("\t\t * AUTOMATICALLY GENERATED FILE!\n");
printf("\t\t * DO NOT EDIT!!\n\t\t */\n\n\n");
printf("#define\tHelpType\tchar **\n");
diff -cr pine.dist/pine/mailtrfc.sh pine4.20/pine/mailtrfc.sh
diff --git a/contrib/ports/vms/readme.vms b/contrib/ports/vms/readme.vms
index da14481..3c252fb 100644
--- a/contrib/ports/vms/readme.vms
+++ b/contrib/ports/vms/readme.vms
@@ -30,7 +30,7 @@ Using
All the user needs is the PINE.EXE; Pine reads the mail from the user's
VMS/MAIL files and send outgoing mail either via mail routines using some
foreign protocol or via direct SMTP to some SMTP server (I preffer this
-metod). You use the latter by defining SMTP-SERVER field with some host.
+method). You use the latter by defining SMTP-SERVER field with some host.
If you do not set it you must define PINE_MAIL_PROTOCOL to the prefix of
the foreign protocol used. For example, if you use SMTP% you have to define
it to SMTP.
diff --git a/contrib/utils/txtcc.sh b/contrib/utils/txtcc.sh
index 0d1bb8c..4f05c1b 100755
--- a/contrib/utils/txtcc.sh
+++ b/contrib/utils/txtcc.sh
@@ -5,7 +5,7 @@
#
# build CC=txtcc gul
#
-# As of Pine4.03, this moves about 675k per process into sharable memory
+# As of Pine4.03, this moves about 675k per process into shareable memory
#
# Corey Satten, corey@cac.washington.edu, 9/11/98