summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Genz <liebundartig@freenet.de>2022-02-15 19:42:57 +0200
committerAlexander Naumov <alexander_naumov@opensuse.org>2022-02-15 19:42:57 +0200
commit7da80e460b546255ca3fccb3aa2e8cae796457a9 (patch)
tree064cc52c5f5425c4632f2e00910d614410bb72a3
parent8b386d8dec851e3f80130b82fd3a9f7e22625c39 (diff)
downloadscreen-7da80e460b546255ca3fccb3aa2e8cae796457a9.tar.gz
[PATCH] fix typing errors
-rw-r--r--src/Makefile.in2
-rw-r--r--src/NEWS.3.510
-rw-r--r--src/NEWS.3.64
-rw-r--r--src/NEWS.3.72
-rw-r--r--src/NEWS.3.916
-rw-r--r--src/acls.c18
-rw-r--r--src/ansi.c4
-rw-r--r--src/attacher.c2
-rw-r--r--src/display.c4
-rw-r--r--src/doc/FAQ12
10 files changed, 37 insertions, 37 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 08b44d3..26ec404 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -1,7 +1,7 @@
#
# Makefile template for screen
#
-# See machine dependant config.h for more configuration options.
+# See machine dependent config.h for more configuration options.
#
srcdir = @srcdir@
diff --git a/src/NEWS.3.5 b/src/NEWS.3.5
index 26e49ba..a805b01 100644
--- a/src/NEWS.3.5
+++ b/src/NEWS.3.5
@@ -17,9 +17,9 @@
* Unification of key bindings and screen commands. All keys now generate
commands.
-* Screen now reads/writes only in asyncronous mode.
+* Screen now reads/writes only in asynchronous mode.
-* Ansi parser speedup code resulting in much faster output of text.
+* ANSI parser speedup code resulting in much faster output of text.
* Changed the rc file syntax. Commands now directly affect the current
window. The default settings are changed with 'def...' commands.
@@ -48,7 +48,7 @@
cleared. Enable this with 'autonuke on'.
* Modifications to save memory: Empty attribute and font lines don't
- get allocated. This is very useful if you have a lage scrollback.
+ get allocated. This is very useful if you have a large scrollback.
* Multi display support:
You can now attach from more than one terminal to a session with
@@ -85,7 +85,7 @@
* Windows can now be selected by akas, too. (Per default bound to the
>'< key.)
-* New terminal capabiliteise CS/CE for cursorkey control.
+* New terminal capabilitise CS/CE for cursorkey control.
* setenv/unsetenv commands added.
@@ -114,6 +114,6 @@ Irix, OSF/1, Harris CX/UX, hpux, dynix/ptx, AIX.
And even more thanks to the brave who attempted to use the 'exec'
command features.
- Donnate patches, bugreports, suggestions, money, beer & pizza to
+ Donate patches, bugreports, suggestions, money, beer & pizza to
screen@uni-erlangen.de
diff --git a/src/NEWS.3.6 b/src/NEWS.3.6
index 6d4360f..409bc67 100644
--- a/src/NEWS.3.6
+++ b/src/NEWS.3.6
@@ -23,10 +23,10 @@
a key.
* New paste syntax: Paste can now concatenate registers and paste
- either on screen or in anouther register.
+ either on screen or in another register.
This makes the old "ins_reg", "copy_reg" commands obsolete.
-* More architecures supported. Screen now runs on AIX3.2.5,
+* More architectures supported. Screen now runs on AIX3.2.5,
Solaris, NeXT and some other exotic platforms.
* Kanji support added. Screen understands JIS, EUC and SJIS coding.
diff --git a/src/NEWS.3.7 b/src/NEWS.3.7
index e398f95..126fb5c 100644
--- a/src/NEWS.3.7
+++ b/src/NEWS.3.7
@@ -20,7 +20,7 @@
%t - title
%n - number (a single % still works)
-* 'defhstatus' command to give everey window a default
+* 'defhstatus' command to give every window a default
hardstatus line. ^E is used as a string escape instead of %
(see above). Try 'defhstatus "Screen: window ^E (^Et)"'
diff --git a/src/NEWS.3.9 b/src/NEWS.3.9
index 4dc7891..abef633 100644
--- a/src/NEWS.3.9
+++ b/src/NEWS.3.9
@@ -4,7 +4,7 @@
* unicode combining character support
-* new encoding: chinese GBK
+* new encoding: Chinese GBK
* new 'backtick' command and string escape to embed command
output into e.g. the hardstatus line
@@ -32,9 +32,9 @@
'register', 'readreg', 'readbuf', 'writebuf' now understand
an extra encoding parameter
-* support for double utf-8 characters
+* support for double UTF-8 characters
-* lots of new string escapes and extensions to existsing ones:
+* lots of new string escapes and extensions to existing ones:
%LD, %LM, %Lw, %W, %-w, %+w, %H, %f, %F, %l, %=, %<, %>
* new commands: 'source', 'eval', 'deflog', 'ignorecase', 'setsid'
@@ -129,8 +129,8 @@
hardstatus [always]message
hardstatus [always]ignore
-* configurable window seperator and hardstatus strings
- The window (region) seperator and the hardstatus can be set to an
+* configurable window separator and hardstatus strings
+ The window (region) separator and the hardstatus can be set to an
arbitrary string containing screen's % escape sequences.
The window's hardstatus is just another escape sequence, '%h'.
New commands:
@@ -138,8 +138,8 @@
caption string [string]
The default strings are "%h" (hardstatus) and "%3n %t" (caption).
-* permanent window seperator
- The window seperator can be set to stay on screen even if
+* permanent window separator
+ The window separator can be set to stay on screen even if
the display contains only one region
New commands:
caption always
@@ -195,7 +195,7 @@
* support for history compaction
You can tell screen to suppress trailing blank lines when
- scolling up text into the history buffer. (Wayne Davison)
+ scrolling up text into the history buffer. (Wayne Davison)
New command:
compacthist
diff --git a/src/acls.c b/src/acls.c
index 1de8e89..9a1b80b 100644
--- a/src/acls.c
+++ b/src/acls.c
@@ -392,7 +392,7 @@ struct acluser **up;
if (!users)
{
debug("Last user deleted. Feierabend.\n");
- Finit(0); /* Destroying whole session. Noone could ever attach again. */
+ Finit(0); /* Destroying whole session. No one could ever attach again. */
}
return 0;
}
@@ -402,7 +402,7 @@ struct acluser **up;
/*
* returns 0 if the copy buffer was really deleted.
- * Also removes any references into the users copybuffer
+ * Also removes any references into the user's copybuffer
*/
int
UserFreeCopyBuffer(u)
@@ -497,7 +497,7 @@ char *from, *to;
/*
* The user pointer stored at *up will be substituted by a pointer
* to the named user's structure, if passwords match.
- * returns NULL if successfull, an static error string otherwise
+ * returns NULL if successful, an static error string otherwise
*/
char *
DoSu(up, name, pw1, pw2)
@@ -560,7 +560,7 @@ char *name, *pw1, *pw2;
sorry++;
}
}
- else /* no pasword provided */
+ else /* no password provided */
if (*pass) /* but need one */
sorry++;
#endif /* CHECKLOGIN */
@@ -572,7 +572,7 @@ char *name, *pw1, *pw2;
sorry++;
}
}
- else /* no pasword provided */
+ else /* no password provided */
if (*u->u_password) /* but need one */
sorry++;
}
@@ -654,7 +654,7 @@ struct win *w;
}
-/* if mode starts with '-' we remove the users exec bit for cmd */
+/* if mode starts with '-' we remove the user's exec bit for cmd */
/*
* NOTE: before you make this function look the same as
* AclSetPermWin, try to merge both functions.
@@ -786,7 +786,7 @@ struct win *win;
{
/*
* Hack. I do not want to duplicate all the above code for
- * AclSetPermCmd. This asumes that there are not more bits
+ * AclSetPermCmd. This assumes that there are not more bits
* per cmd than per win.
*/
debug1("AclSetPermWin: default_c_bits '%s'.\n", mode);
@@ -800,7 +800,7 @@ struct win *win;
}
/*
- * String is broken down into comand and window names, mode applies
+ * String is broken down into command and window names, mode applies
* A command name matches first, so do not use these as window names.
* uu should be NULL, except if you want to change his umask.
*/
@@ -1008,7 +1008,7 @@ char **argv;
}
/*
- * Preprocess argments, so that umask can be set with UsersAcl
+ * Preprocess arguments, so that umask can be set with UsersAcl
*
* all current users umask ±rwxn
* one specific user umask user1±rwxn
diff --git a/src/ansi.c b/src/ansi.c
index 27983bb..734504d 100644
--- a/src/ansi.c
+++ b/src/ansi.c
@@ -1649,7 +1649,7 @@ PrintStart()
{
curr->w_pdisplay = 0;
- /* find us a nice display to print on, fore prefered */
+ /* find us a nice display to print on, fore preferred */
display = curr->w_lastdisp;
if (!(display && curr == D_fore && (printcmd || D_PO)))
for (display = displays; display; display = display->d_next)
@@ -2340,7 +2340,7 @@ char *fmt;
int n1, n2;
{
register int len;
- char rbuf[40]; /* enough room for all replys */
+ char rbuf[40]; /* enough room for all replies */
sprintf(rbuf, fmt, n1, n2);
len = strlen(rbuf);
diff --git a/src/attacher.c b/src/attacher.c
index 18ba43c..c35ae7a 100644
--- a/src/attacher.c
+++ b/src/attacher.c
@@ -113,7 +113,7 @@ QueryResultFail SIGDEFARG
* MSG_CONT, MSG_WINCH and nothing else!
*
* if type == MSG_ATTACH and sockets are used, attaches
- * tty filedescriptor.
+ * tty file descriptor.
*/
static int
diff --git a/src/display.c b/src/display.c
index 978b0a8..0c4ab36 100644
--- a/src/display.c
+++ b/src/display.c
@@ -1022,7 +1022,7 @@ int x2, y2;
/* Calculate the cost to move the cursor to the right x position */
costx = EXPENSIVE;
- if (x1 >= 0) /* relativ x positioning only if we know where we are */
+ if (x1 >= 0) /* relative x positioning only if we know where we are */
{
if (dx > 0)
{
@@ -2308,7 +2308,7 @@ char *str;
/*
- * Refreshes the harstatus of the fore window. Shouldn't be here...
+ * Refreshes the hardstatus of the fore window. Shouldn't be here...
*/
void
RefreshHStatus()
diff --git a/src/doc/FAQ b/src/doc/FAQ
index 6c9c8af..e4c01bf 100644
--- a/src/doc/FAQ
+++ b/src/doc/FAQ
@@ -14,9 +14,9 @@ A: Screen always interprets control-sequences sent by the
escape character (CTRL-A). Both are basic screen features and
cannot be switched off. Even if it were possible to switch
screen into a completely transparent mode, you could never switch
- between windows, while kermit/sz/rz is downloading a file. You
- must wait til the end as kermit/sz/rz will not transmit your
- input during a file transfer and as kermit/sz/rz would be very
+ between windows, while kermit/sz/rz is downloading a file. You
+ must wait till the end as kermit/sz/rz will not transmit your
+ input during a file transfer and as kermit/sz/rz would be very
confused if screen switched away the window containing the
other kermit/sz/rz. Simply detach your screen session for each
file transfer and start the transfer program only from the shell
@@ -62,7 +62,7 @@ Q: When you start "screen" a page of text comes up to start you
A: Just put the following line in your ~/.screenrc:
startup_message off
- Many peole ask this, although it is in the man page, too :-)
+ Many people ask this, although it is in the man page, too :-)
Q: Start "screen emacs" and run emacs function suspend-emacs
(ctrl-z). The window containing emacs vanishes.
@@ -120,7 +120,7 @@ A: Probably you got the termcap/terminfo entries wrong. Fixing this
should check the terminfo/termcap databases there. If you cannot
tell if terminfo or termcap is used (or you just want to be
save), the do all steps in stage 3 in parallel for both
- systems (on all envolved hosts). Second: Understand the basic
+ systems (on all involved hosts). Second: Understand the basic
rules how screen does its terminal emulation. When screen is
started or reattached, it relies on the TERM environment variable
to correctly reflect the terminal type you have physically
@@ -156,7 +156,7 @@ A: Probably you got the termcap/terminfo entries wrong. Fixing this
Q: I cannot configure screen. Sed does not work.
-A: The regular expressions used in our configure scrip are too
+A: The regular expressions used in our configure script are too
complicated for GNU sed version 2.03. In this regard it is bug
compatible with Ultrix 3.1 "sed": GNU sed version 2.03 dumps
core with our configure script. Try an older release. E.g. from