summaryrefslogtreecommitdiffstats
path: root/RichString.c
Commit message (Collapse)AuthorAgeFilesLines
* Clean up existing whitespaceDaniel Flanagan2019-10-311-1/+1
|
* Protect against overflows in RichString_setAttrnHisham Muhammad2018-02-261-0/+6
|
* Check for failure in allocations.Hisham2016-02-021-2/+3
|
* Introduce CLAMP macro. Unify all MIN(MAX(a,b),c) uses.Explorer092016-01-151-4/+0
| | | | | | | | | | | | | | | | | | | | | | | With the CLAMP macro replacing the combination of MIN and MAX, we will have at least two advantages: 1. It's more obvious semantically. 2. There are no more mixes of confusing uses like MIN(MAX(a,b),c) and MAX(MIN(a,b),c) and MIN(a,MAX(b,c)) appearing everywhere. We unify the 'clamping' with a single macro. Note that the behavior of this CLAMP macro is different from the combination `MAX(low,MIN(x,high))`. * This CLAMP macro expands to two comparisons instead of three from MAX and MIN combination. In theory, this makes the code slightly smaller, in case that (low) or (high) or both are computed at runtime, so that compilers cannot optimize them. (The third comparison will matter if (low)>(high); see below.) * CLAMP has a side effect, that if (low)>(high) it will produce weird results. Unlike MIN & MAX which will force either (low) or (high) to win. No assertion of ((low)<=(high)) is done in this macro, for now. This CLAMP macro is implemented like described in glib <http://developer.gnome.org/glib/stable/glib-Standard-Macros.html> and does not handle weird uses like CLAMP(a++, low++, high--) .
* Array entries have been oddly flipped here for years.Hisham Muhammad2015-11-231-2/+1
|
* Fixes for color glitches in ncurses ABI6.Hisham Muhammad2015-08-271-10/+7
| | | | Could no longer reproduce #244 after these fixes.
* include wctype.h for iswprint()Christian Hesse2015-08-251-0/+4
|
* Omit non-printable characters with widechar curses.Hisham Muhammad2015-08-201-1/+1
| | | | Closes PR #111.
* Extra checks.Hisham Muhammad2015-08-201-1/+1
|
* Make Unicode strings safe for ncurses 6 ABI.Hisham Muhammad2015-08-201-4/+4
| | | | Closes #241.
* Do not trust isalpha(c) for values > 255.Hisham Muhammad2015-03-231-1/+1
| | | | | | | Fixes #174. Conflicts: Panel.c
* Changes for supporting separate platform subdirectories.Hisham Muhammad2014-11-241-1/+1
|
* Refactored key handlers.Hisham Muhammad2014-11-191-7/+10
| | | | | | Made the logic more modular, hopefully easier to follow, and removed repeated code. Plus, some optimization in RichString code.
* alignment improvementsHisham Muhammad2014-02-271-0/+1
|
* Add extra checks in configure.ac for different locations of (n)curses.hHisham Muhammad2013-02-261-0/+2
|
* search and filter for the strace and lsof screens!Hisham Muhammad2012-11-101-13/+14
|
* Remove old memory debugging routines. We have Valgrind nowadays.Hisham Muhammad2011-12-261-1/+0
|
* major header cleanupHisham Muhammad2011-12-261-9/+11
|
* try to use unicode headers firstHisham Muhammad2011-11-031-5/+5
|
* Try harder to find the ncurses header, fixes detection in SuSE SLES9.Hisham Muhammad2011-09-081-3/+7
| | | | | (thanks to Moritz Barsnick)
* Remove arbitrary limit from rich stringsHisham Muhammad2010-11-221-51/+74
| | | | | | | | | Fix subtree hiding Fix reading of CPU values in hidden threads Fix hiding of zombie processes as kernel threads Remove "debug proc" code Code cleanup in processElements
* warning fixesHisham Muhammad2010-02-251-6/+6
|
* fix to minor bug affecting the build process, a maintenance release will ↵Hisham Muhammad2009-06-081-2/+2
| | | | follow shortly.
* changes for htop 0.8.2Hisham Muhammad2009-06-021-2/+7
|
* catch nonprintable charactersHisham Muhammad2009-03-111-1/+3
|
* Add Unicode support, enabled with the --enable-unicodeHisham Muhammad2008-03-091-16/+84
| | | | | | flag, which requires libncursesw. Thanks to Sergej Pupykin!
* IO-wait time now counts as idle time, which is a moreHisham Muhammad2007-11-091-9/+9
| | | | | | | accurate description. It is still available in split time, now called detailed CPU time. (thanks to Samuel Thibault for the report)
* Perform RichString operations by hand.Hisham Muhammad2006-07-121-33/+18
| | | | | Avoid unnecessary operations when processing entries on ProcessList.
* Updates for new version of the MakeHeader.py script.Hisham Muhammad2006-06-061-2/+1
|
* Initial import.Hisham Muhammad2006-03-041-0/+83

© 2014-2024 Faster IT GmbH | imprint | privacy policy