diff --git a/internal/help/Keyword_Reference_-_By_usage.txt b/internal/help/Keyword_Reference_-_By_usage.txt index 04240c0ae..377edd49b 100644 --- a/internal/help/Keyword_Reference_-_By_usage.txt +++ b/internal/help/Keyword_Reference_-_By_usage.txt @@ -394,9 +394,7 @@ The following table describes the error codes that are reported by the '''QB64'' * [[LOC]] (function) {{text|finds the current file location or size of a [[COM]] port receive buffer.}} * [[LOCK]] (statement) {{text|prevents access to a file.}} * [[LOF]] (file function) {{text|returns the size of a file in bytes.}} -* [[MKDIR]] (statement) {{ -4000 -text|creates a new folder in the designated path.}} +* [[MKDIR]] (statement) {{text|creates a new folder in the designated path.}} * [[NAME]] (statement) {{text|renames a file [[AS]] a new file name.}} * [[OPEN]] (file I/O statement) {{text|opens a specified file FOR an access mode with a set reference number.}} * [[OUTPUT]] (file mode) {{text|opens or creates a new file that holds no data.}} diff --git a/internal/help/LOCATE.txt b/internal/help/LOCATE.txt index fd55fd725..0d8a9160c 100644 --- a/internal/help/LOCATE.txt +++ b/internal/help/LOCATE.txt @@ -21,6 +21,7 @@ The [[LOCATE]] statement locates the screen text row and column positions for a * When [[PRINT]]ing on the bottom 2 ''rows'', use a [[semicolon]] after the PRINT expression to avoid a screen roll. * If the {{Parameter|cursorStart%}} line is given, the {{Parameter|cursorStop%}} line must also be given. A wider range between them produces a taller cursor. * If you use LOCATE beyond the current number of rows in text mode, QB64 will try to adapt the screen instead of tossing an error. +* When writing to the console, only the ''row'' and ''column'' arguments are used, all others are ignored. Furthermore, on non-Windows systems LOCATE statements that do not give both a ''row'' and ''column'' will be ignored entirely. {{PageExamples}}