From 41b1f1f91197b40b243b6a0b38cc36ff3bc824fe Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Wed, 14 Apr 2021 21:41:27 +0200 Subject: Improve documentation (test/editor) (#219) Add missing declaration, update more declarations. --- documentation/src/editor.dox | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'documentation/src/editor.dox') 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 -- cgit v1.2.3