diff options
| -rw-r--r-- | documentation/src/editor.dox | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/documentation/src/editor.dox b/documentation/src/editor.dox index 9454adc4e..8a0eb3cd7 100644 --- a/documentation/src/editor.dox +++ b/documentation/src/editor.dox @@ -50,8 +50,9 @@ Our text editor will need some global variables to keep track of things: \code int changed = 0; -char filename[256] = ""; -Fl_Text_Buffer *textbuf; +char filename[FL_PATH_MAX] = ""; +char title[FL_PATH_MAX]; +Fl_Text_Buffer *textbuf = 0; \endcode The \p textbuf variable is the text editor buffer for |
