aboutsummaryrefslogtreecommitdiff
path: root/modules/ansi_c/api
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2019-02-16 23:47:30 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2019-02-16 23:47:30 -0500
commit84c449a1ab6f10883aafc5dcc64f32a2eddba4f0 (patch)
tree80d54e8c343ce1f8a23d9e1862e26f5217d90eb1 /modules/ansi_c/api
parent289683eb2044abce8350b8df18580e4d41e072fb (diff)
downloadtextadept-84c449a1ab6f10883aafc5dcc64f32a2eddba4f0.tar.gz
textadept-84c449a1ab6f10883aafc5dcc64f32a2eddba4f0.zip
Fixed escaping of newlines in generated Lua API documentation.
Diffstat (limited to 'modules/ansi_c/api')
-rw-r--r--modules/ansi_c/api2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ansi_c/api b/modules/ansi_c/api
index dbd36560..58902be2 100644
--- a/modules/ansi_c/api
+++ b/modules/ansi_c/api
@@ -203,7 +203,7 @@ fsetpos fsetpos(FILE* stream, const fpos_t* ptr) [int]\nSets current position of
clearerr clearerr(FILE* stream) [void]\nClears end-of-file and error indicators for stream `stream`.
feof feof(FILE* stream) [int]\nReturns non-zero if end-of-file indicator is set for stream `stream`.
ferror ferror(FILE* stream) [int]\nReturns non-zero if error indicator is set for stream `stream`.
-perror perror(const char* s) [void]\nPrints `s` (if non-null) and strerror(errno) to standard error as would:\n fprintf(stderr, "%s: %s\n", (s != NULL ? s : ""), strerror(errno))
+perror perror(const char* s) [void]\nPrints `s` (if non-null) and strerror(errno) to standard error as would:\n fprintf(stderr, "%s: %s\\n", (s != NULL ? s : ""), strerror(errno))
EXIT_FAILURE EXIT_FAILURE\nValue for status argument to exit indicating failure.
EXIT_SUCCESS EXIT_SUCCESS\nValue for status argument to exit indicating success.