summaryrefslogtreecommitdiff
path: root/HISTORY
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2007-07-21 13:39:02 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2007-07-21 13:39:02 +0200
commit4c90306502f858ec95683baf2bfeb9b1fe669c66 (patch)
tree36089396af32aa217f75c32619bbd2a58a1edd80 /HISTORY
parent214c12289f58c90369fce58af20ae50a22fda34d (diff)
downloadvdr-4c90306502f858ec95683baf2bfeb9b1fe669c66.tar.gz
vdr-4c90306502f858ec95683baf2bfeb9b1fe669c66.tar.bz2
Made skipspace() an inline function and changed it to handle the most common case of 'no leading space' very fast, and avoid calling isspace()
Diffstat (limited to 'HISTORY')
-rw-r--r--HISTORY5
1 files changed, 4 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 317bfcbe..6b933e80 100644
--- a/HISTORY
+++ b/HISTORY
@@ -5276,7 +5276,7 @@ Video Disk Recorder Revision History
- Improved performance of the SVDRP commands LSTC and CHAN when used with a
channel name.
-2007-07-20: Version 1.5.6
+2007-07-21: Version 1.5.6
- Fixed a buffer overflow in initializing the system character table (thanks
to Marco Schlüßler).
@@ -5290,3 +5290,6 @@ Video Disk Recorder Revision History
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
- Improved cControl::Launch() to keep 'control' from pointing to uninitialized
memory (thanks to Rolf Ahrenberg).
+- Made skipspace() an inline function (suggested by Tobias Bratfisch) and changed
+ it to handle the most common case of 'no leading space' very fast, and avoid
+ calling isspace(), which made the whole function a lot faster.