Skip to content

Commit 8d120de

Browse files
committed
pre5.1-24: Updated docs and copyrights for upcoming release
1 parent c9d4c4d commit 8d120de

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1381
-1044
lines changed

COPYRIGHT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
This file is part of MOST.
22

3-
Copyright (c) 1991, 1999, 2002, 2005-2017 John E. Davis
3+
Copyright (c) 1991, 1999, 2002, 2005-2018 John E. Davis
44

55
This program is free software; you can redistribute it and/or modify it
66
under the terms of the GNU General Public License as published by the Free

NEWS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
NEWS for v5.1.0
2+
3+
This is primarily a maintenance release.
4+
5+
The most notable update is that regular expression (RE) searches are
6+
supported again. In ancient times, most supported RE searches, but
7+
was RE support was dropped was dropped when UTF-8 support was added.
8+
The default is still to use a non-RE search. The -r command line
9+
switch may be used to make the default a RE-based search. Within
10+
most, ":r" may be used to toggle the search type between RE and
11+
non-RE.
12+

README

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Compiling MOST requires an ANSI C compiler. In addition you MUST have
2-
a copy of the S-Lang library version 2.X. Version 1 is nolonger
2+
a copy of the S-Lang library version 2.X. Version 1 is no longer
33
supported. This library is available from
44
<http://www.jedsoft.org/slang/>.
55

66
INSTALLATION INSTRUCTIONS
7-
7+
88
On Unix, you should be able to simply type:
99

1010
./configure; make
@@ -14,7 +14,7 @@ that libslang.dll is on your PATH; otherwise the chkslang program will
1414
not run.
1515

1616
If using DJGPP or MINGW32, do:
17-
17+
1818
<edit src/makefile.w32, setting ARCH to either dgj or gw32>
1919
cd src
2020
make -f makefile.w32
@@ -26,16 +26,16 @@ installed as a foreign command. This means that you must first type:
2626
$ most :== $device:[dir.containing.most]most.exe
2727

2828
I suggest that you first build MOST then view the doc file using MOST (`most
29-
most.doc'). If you need help, hit the `h' key from within MOST.
29+
most.doc'). If you need help, hit the `h' key from within MOST.
3030

3131
MOST understands the following environment variables:
3232

33-
MOST_SWITCHES
33+
MOST_SWITCHES
3434
MOST_EDITOR, SLANG_EDITOR, EDITOR
3535
MOST_INITFILE
3636
MOST_HELP
3737

38-
1. MOST_SWITCHES is a list of commonly used switches.
38+
1. MOST_SWITCHES is a list of commonly used switches.
3939

4040
2. MOST_EDITOR and SLANG_EDITOR are formatted strings describing what
4141
editor to use. The string can contain %s and %d formatting descriptors
@@ -44,7 +44,7 @@ MOST understands the following environment variables:
4444
Since MOST is just one of several programs that use the S-Lang library,
4545
I suggest that you use SLANG_EDITOR instead of MOST_EDITOR.
4646

47-
3. MOST_INITFILE specifies a configuration file for MOST. One can specifiy
47+
3. MOST_INITFILE specifies a configuration file for MOST. One can specify
4848
keymaps, colors, etc. via this file. In the absence of
4949
MOST_INITFILE, the program will look for a file call .mostrc in
5050
the home directory (most.rc on non-Unix systems).
@@ -57,8 +57,8 @@ MOST understands the following environment variables:
5757

5858
4. If MOST_HELP is defined to point to an existing file, MOST will load a
5959
file as a help file. This is useful for describing custom keymaps.
60-
61-
Any problems with MOST should be reported to [email protected].
60+
61+
Any problems with MOST should be reported to [email protected].
6262

6363
[Note also that this is really the first non-trivial C program that
6464
I ever wrote. Because of this, much of the code appears very
@@ -74,13 +74,13 @@ Any problems with MOST should be reported to [email protected].
7474

7575
if (-1 == some_function ())
7676
test = 0;
77-
77+
7878
if (test)
7979
some_other_function ();
8080
}
81-
81+
8282
with:
83-
83+
8484
while (1)
8585
{
8686
function ();

changes.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ Changes since 5.0.0
4141
ignore ESC[K unless invoked with -v.
4242
22. configure: Updated to use aclocal.m4 v0.3.3-1
4343
23. src/Makefile.in: Added LDFLAGS to chkslang linker line (Denis Pronin)
44+
24. *: Converted the man page source most.1 to text-macro, and
45+
regenerated it. Updated copyrights for upcoming release.
46+
47+
4448
{{{ Previous Versions
4549
Changes since 4.10.2
4650
0. src/most.c: version bumped to 5.0.0-x
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)