From 84c449a1ab6f10883aafc5dcc64f32a2eddba4f0 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Sat, 16 Feb 2019 23:47:30 -0500 Subject: Fixed escaping of newlines in generated Lua API documentation. --- modules/ansi_c/api | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/ansi_c/api') 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. -- cgit v1.2.3