aboutsummaryrefslogtreecommitdiff
path: root/contrib/ee
Commit message (Collapse)AuthorAgeFilesLines
* Clean some 'svn:executable' properties in the tree.Pedro F. Giffuni2013-01-262-0/+0
| | | | | | | | Submitted by: Christoph Mallon MFC after: 3 days Notes: svn path=/head/; revision=245952
* In contrib/ee/ee.c, fix a few warnings about format strings not beingDimitry Andric2011-12-171-7/+7
| | | | | | | | | | | literals. Also, change the direction argument to move_rel() from char to int; K&R function definions cause it to be promoted to an int anyway, and this way we avoid clang warning about it. MFC after: 1 week Notes: svn path=/head/; revision=228627
* Import ee 1.5.2 into HEAD.Ed Schouten2010-10-082-23/+22
| | | | | | | | PR: bin/145921 MFC after: 2 weeks Notes: svn path=/head/; revision=213567
* Add a minimal change to prevent NULL deference in ee(1).Xin LI2009-11-101-1/+1
| | | | | | | | | To repeat the problem, one can press "Ctrl+C" and then enter "0". Submitted by: Alexander Best <alexbestms wwu de> Notes: svn path=/head/; revision=199123
* 1) Remove single occurance of HAS_CTYPE ifdef, ctype functionsAndrey A. Chernov2009-09-041-10/+6
| | | | | | | | | | used here for a long time and needs their header in anycase. 2) Add (unsigned char) casts to more ctype macros. 3) Simplify menu input handling using ctype instead of range unguarded hardcoded tricks. Notes: svn path=/head/; revision=196818
* Move <locale.h> out of NO_CATGETS define too (as setlocale() in prev.Andrey A. Chernov2009-09-021-2/+1
| | | | | | | commit) Notes: svn path=/head/; revision=196751
* 1) Use isprint() instead of hardcoded values to detect non-printable.Andrey A. Chernov2009-09-021-9/+9
| | | | | | | | | 2) Use (unsigned char) cast in waddch() calls. It fix highlighting bug: sign extension of 8bit to the attributes area. 3) Use setlocale() in any case. Notes: svn path=/head/; revision=196750
* char can be unsigned, like on ARM and PowerPC. Unbreak theMarcel Moolenaar2009-05-281-2/+2
| | | | | | | | build for those by propagating the type of character from char to int. Notes: svn path=/head/; revision=192954
* Update ee(1) in the base system to version 1.5.0.Ed Schouten2009-05-279-460/+464
| | | | | | | | | | | | | | | | | | | | This version is now licensed under a 2-clause BSD license, instead of the Artistic license. I've reverted a lot of local modifications we made to ee, because they have been integrated upstream as well. Only local modifications include: - $FreeBSD$ ID. - Pathname to init.ee. - catopen() call, to honor LC_MESSAGES instead of LANG. To keep SVN happy, I'm putting an application/octet-stream mime type on the KOI8 translations. Reviewed by: current@ Notes: svn path=/head/; revision=192914
* Merge local changes to ee(1) into contrib space.Ed Schouten2009-05-262-112/+161
| | | | | | | | | | | The source file, manual page and English translation are now directly obtained from the contrib/ directory. This makes it a lot easier to merge a newer version of ee(1) into the tree. Thanks to: des and jhb Notes: svn path=/head/; revision=192856
* Copy ee 1.4.2 into the contrib directory.Ed Schouten2009-05-2612-0/+10842
This allows me to merge our custom changes to ee(1) back on top of original sources, with correct mergeinfo. Notes: svn path=/head/; revision=192850