diff --git a/CHANGES b/CHANGES index 76043c479..166db5da2 100644 --- a/CHANGES +++ b/CHANGES @@ -2,7 +2,7 @@ CHANGES IN FLTK 1.1.8 - Documentation fixes (STR #1454, STR #1455, STR #1456, STR #1457, STR #1458, STR #1460, STR #1481, STR #1578, - STR #1639, STR #1645) + STR #1639, STR #1645, STR #1644) - Fixed Makefile "make clean" (STR #1642, STR #1643) - The sample RPM spec file now enables large file support and threading support (STR #1603) diff --git a/documentation/Fl_Text_Buffer.html b/documentation/Fl_Text_Buffer.html index 6bbc68099..2b9712004 100644 --- a/documentation/Fl_Text_Buffer.html +++ b/documentation/Fl_Text_Buffer.html @@ -142,7 +142,10 @@ typedef void (*Fl_Text_Modify_Cb)(int pos, int nInserted, int nDeleted,
Appends the named file to the end of the buffer. +
Appends the named file to the end of the buffer. Returns 0 on +success, non-zero on error (strerror() contains reason). 1 indicates +open for read failed (no data loaded). 2 indicates error occurred +while reading data (data was partially loaded).
Inserts a file at the specified position. +
Inserts a file at the specified position. Returns 0 on success, +non-zero on error (strerror() contains reason). 1 indicates open +for read failed (no data loaded). 2 indicates error occurred +while reading data (data was partially loaded).
Replaces the current buffer with the contents of a file. +
Replaces the current buffer with the contents of a file. Returns 0 +on success, non-zero on error (strerror() contains reason). 1 indicates +open for read failed (no data loaded). 2 indicates error occurred +while reading data (data was partially loaded).
Writes the specified portions of the file to a file. +
Writes the specified portions of the file to a file. Returns 0 on success, non-zero +on error (strerror() contains reason). 1 indicates open for write failed +(no data saved). 2 indicates error occurred while writing data +(data was partially saved).
Saves the entire buffer to a file. +
Saves the entire buffer to a file. Returns 0 on success, non-zero +on error (strerror() contains reason). 1 indicates open for write failed +(no data saved). 2 indicates error occurred while writing data +(data was partially saved).