summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSadrul Habib Chowdhury <sadrul@users.sourceforge.net>2010-02-24 02:32:23 -0500
committerSadrul Habib Chowdhury <sadrul@users.sourceforge.net>2010-02-24 02:32:23 -0500
commit42f59cca30ef4e7a390b283ba02a4a015718fb2e (patch)
treefd0763e49c1474e74274065001df2ec068cc2ff8
parent3a0f07481428333b97a69956ddebdb57d70227a7 (diff)
downloadscreen-42f59cca30ef4e7a390b283ba02a4a015718fb2e.tar.gz
Typo fixes from Trent W Buck.
-rw-r--r--src/attacher.c2
-rw-r--r--src/doc/screen.12
-rw-r--r--src/doc/screen.texinfo2
-rw-r--r--src/socket.c4
-rw-r--r--src/termcap.c2
5 files changed, 6 insertions, 6 deletions
diff --git a/src/attacher.c b/src/attacher.c
index ef3ce8b..88da744 100644
--- a/src/attacher.c
+++ b/src/attacher.c
@@ -453,7 +453,7 @@ AttacherSigInt SIGDEFARG
}
/*
- * Unfortunatelly this is also the SIGHUP handler, so we have to
+ * Unfortunately this is also the SIGHUP handler, so we have to
* check if the backend is already detached.
*/
diff --git a/src/doc/screen.1 b/src/doc/screen.1
index 9da825d..09ef30d 100644
--- a/src/doc/screen.1
+++ b/src/doc/screen.1
@@ -1898,7 +1898,7 @@ Note that \fBk\fP is traditionally bound to the \fIkill\fP command.
.PP
This forces any currently selected region to be automatically
resized at least a certain \fIwidth\fP and \fIheight\fP. All
-other surrounding regions will be resized in order to accomodate.
+other surrounding regions will be resized in order to accommodate.
This constraint follows everytime the \*Qfocus\*U command is
used. The \*Qresize\*U command can be used to increase either
dimension of a region, but never below what is set with
diff --git a/src/doc/screen.texinfo b/src/doc/screen.texinfo
index 94c2aa3..d453b07 100644
--- a/src/doc/screen.texinfo
+++ b/src/doc/screen.texinfo
@@ -2026,7 +2026,7 @@ automatically if the window is displayed more than once.
(none)@*
This forces any currently selected region to be automatically
resized at least a certain @var{width} and @var{height}. All
-other surrounding regions will be resized in order to accomodate.
+other surrounding regions will be resized in order to accommodate.
This constraint follows every time the @code{focus} command is
used. The @code{resize} command can be used to increase either
dimension of a region, but never below what is set with
diff --git a/src/socket.c b/src/socket.c
index 680a150..9e61816 100644
--- a/src/socket.c
+++ b/src/socket.c
@@ -451,7 +451,7 @@ MakeServerSocket()
if (stat(SockPath, &st) == -1)
Panic(errno, "stat");
if ((int)st.st_uid != real_uid)
- Panic(0, "Unfortunatelly you are not its owner.");
+ Panic(0, "Unfortunately you are not its owner.");
if ((st.st_mode & 0700) == 0600)
Panic(0, "To resume it, use \"screen -r\"");
else
@@ -543,7 +543,7 @@ MakeServerSocket()
if (stat(SockPath, &st) == -1)
Panic(errno, "stat");
if (st.st_uid != real_uid)
- Panic(0, "Unfortunatelly you are not its owner.");
+ Panic(0, "Unfortunately you are not its owner.");
if ((st.st_mode & 0700) == 0600)
Panic(0, "To resume it, use \"screen -r\"");
else
diff --git a/src/termcap.c b/src/termcap.c
index 42f6a73..8f6b8b9 100644
--- a/src/termcap.c
+++ b/src/termcap.c
@@ -260,7 +260,7 @@ int he;
D_US = D_UE = 0;
if (D_SG > 0)
D_SO = D_SE = 0;
- /* Unfortunatelly there is no 'mg' capability.
+ /* Unfortunately there is no 'mg' capability.
* For now we think that mg > 0 if sg and ug > 0.
*/
if (D_UG > 0 && D_SG > 0)