]> granicus.if.org Git - curl/commitdiff
docs: ESCape "\n" codes
authorGisle Vanem <gisle.vanem@gmail.com>
Wed, 7 Nov 2018 12:26:55 +0000 (13:26 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 9 Nov 2018 14:38:52 +0000 (15:38 +0100)
Groff / Troff will display a:
 printaf("Errno: %ld\n", error);
as:
  printf("Errno: %ld0, error);

when a "\n" is not escaped. Use "\\n" instead.

Closes #3246

docs/libcurl/opts/CURLINFO_OS_ERRNO.3
docs/libcurl/opts/CURLOPT_CHUNK_DATA.3
docs/libcurl/opts/CURLOPT_CLOSESOCKETDATA.3
docs/libcurl/opts/CURLOPT_CLOSESOCKETFUNCTION.3

index 6348d6cf8a62bf9e6ec2f62b6fc375862fc05cfb..63072ae1a68322b59c883afd4995455d51aef464 100644 (file)
@@ -44,7 +44,7 @@ if(curl) {
     long error;
     res = curl_easy_getinfo(curl, CURLINFO_OS_ERRNO, &error);
     if(res && error) {
-      printf("Errno: %ld\n", error);
+      printf("Errno: %ld\\n", error);
     }
   }
   curl_easy_cleanup(curl);
index 6a734e58c613ce147fd9d9194ed8054850880801..ebf76559e28564a786e86e9a33c12d2063f21887 100644 (file)
@@ -46,20 +46,20 @@ static long file_is_coming(struct curl_fileinfo *finfo,
 
   switch(finfo->filetype) {
   case CURLFILETYPE_DIRECTORY:
-    printf(" DIR\n");
+    printf(" DIR\\n");
     break;
   case CURLFILETYPE_FILE:
     printf("FILE ");
     break;
   default:
-    printf("OTHER\n");
+    printf("OTHER\\n");
     break;
   }
 
   if(finfo->filetype == CURLFILETYPE_FILE) {
     /* do not transfer files >= 50B */
     if(finfo->size > 50) {
-      printf("SKIPPED\n");
+      printf("SKIPPED\\n");
       return CURL_CHUNK_BGN_FUNC_SKIP;
     }
 
index b1eab0378a889617be64a3870afb6d3a55aa97cf..b9bca47dc05445c4140ecea6f5bceb351f0c2a8b 100644 (file)
@@ -39,7 +39,7 @@ All except file:
 .nf
 static int closesocket(void *clientp, curl_socket_t item)
 {
-  printf("libcurl wants to close %d now\n", (int)item);
+  printf("libcurl wants to close %d now\\n", (int)item);
   return 0;
 }
 
index 7cfaa22be6f119a31e1acc3def531cc5737420c7..3fb75f74764822cd001cb547c4b02730b359c543 100644 (file)
@@ -50,7 +50,7 @@ All
 .nf
 static int closesocket(void *clientp, curl_socket_t item)
 {
-  printf("libcurl wants to close %d now\n", (int)item);
+  printf("libcurl wants to close %d now\\n", (int)item);
   return 0;
 }