All relevant changes to the project are documented in this file.
Bugfix release.
- Fix segfault when closing
*scratch*
buffer withC-x k RET
having issuedC-x b RET
from a fresh startedmg
. - Bring
fileio.c
up to speed with OpenBSD, r1.102, replacingTMPDIR
with the standard/tmp
directory for temp files.
v3.0.1 - 2016-05-16
Bugfix release.
- Fix
C-a
,C-e
,C-space
, etc. regression when Cscope integration,--disable-cscope
or--disable-all
is selected.
v3.0 - 2016-05-15
First release based on Mg2a from OpenBSD 5.9. The work on Mg3a, by Bengt Larsson, is not a part of this project. The version number was chosen based on: 2A < 30 < 3A HEX. The OpenBSD Mg is greatly improved over the original Mg2a, from 1986, but does not have the same feature set as Mg3a.
- Import mg from OpenBSD 5.9
- Use libite (-lite) to provide missing OpenBSD/NetBSD API's
- Add GNU configure and build system for portability to other systems:
- Detect existence and correct version of libite (v1.6.0 or later)
- Detect
-ltermcap
,-ltinfo
, or-lcurses
. We only use the termcap functionality in Mg, but can link with either of them - Detect
term.h
, we cannot usetermcap.h
because of cookies - Make OpenBSD developed features optional with configure, e.g. integrated ctags and cscope support
- Add
--enable-size-optimizations
option - Add
--with-startup=FILE
for alternate init file
- Conditionalize OpenBSD specific API's and modules, e.g. the
pledge()
API and thetheo.c
module ...#ifdef __OpenBSD__
- Add missing
M-x version
for compatibility with GNU Emacs - Add
-h
command line option for a simple usage text - Change Mg built-in version to use configure script's
PACKAGE_STRING
rather than hardcoded, and rather outdated,Mg 2a
- Add LICENSE file, from licensing info (Public Domain) in README
- Add AUTHORS file, from author listing in README
- Create README.md from text in README and
mg.1
with information about this project and the motivation for it
- Convert from
fgetln()
to standard POSIXgetline()
- Convert old
st_mtimespec
to POSIXst_mtim
- Add workaround for systems missing
TCSASOFT
flag totcsetattr()
- Import
SO_NOSIGPIPE
patch for OX X from by Han Boetes' Mg porting project http://homepage.boetes.org/software/mg/ - Encapsulate private
globalwd
data in optionalgrep.c
module - Fix build warnings for missing
asprintf()
family of C API's - Integration fixes:
- Fix unsafe enabling of non-blocking mode on file descriptor used
when piping buffer contents (
M-|
) to an external program. - Collect forked off children in
M-|
, missingwaitpid()
- Fixes for bugs found by Coverity Scan:
- Fix file descriptor leaks
- Add missing NULL pointer checks
- Missing checks for return value from both internal and C library functions. Some simply marked as "don't care"
- Fix missing initialization of stack variables