]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix backslash mistakes in doc strings in C code
authorMattias Engdegård <mattiase@acm.org>
Sat, 2 Jan 2021 17:08:47 +0000 (18:08 +0100)
committerMattias Engdegård <mattiase@acm.org>
Sat, 2 Jan 2021 17:12:13 +0000 (18:12 +0100)
These were found by an instrumented version of make-docfile.

* src/gnutls.c (Fgnutls_available_p):
* src/keymap.c (Fkey_description):
* src/xdisp.c (syms_of_xdisp):

src/gnutls.c
src/keymap.c
src/xdisp.c

index b995ffffa60bc3f2687bbd9f51400542e030f386..aa245ee5c393569c1309f7459c3d6ecea34adc7d 100644 (file)
@@ -2766,7 +2766,7 @@ GnuTLS MACs             : the list will contain `macs'.
 GnuTLS digests          : the list will contain `digests'.
 GnuTLS symmetric ciphers: the list will contain `ciphers'.
 GnuTLS AEAD ciphers     : the list will contain `AEAD-ciphers'.
-%DUMBFW                 : the list will contain `ClientHello\ Padding'.
+%DUMBFW                 : the list will contain `ClientHello\\ Padding'.
 Any GnuTLS extension with ID up to 100
                         : the list will contain its name.  */)
   (void)
index f9aac6d73133e71673be39886190c3286f6afae0..1eeea81f627d4731e73a8d4068e1268178161c61 100644 (file)
@@ -1968,7 +1968,7 @@ then the value includes only maps for prefixes that start with PREFIX.  */)
 DEFUN ("key-description", Fkey_description, Skey_description, 1, 2, 0,
        doc: /* Return a pretty description of key-sequence KEYS.
 Optional arg PREFIX is the sequence of keys leading up to KEYS.
-For example, [?\C-x ?l] is converted into the string \"C-x l\".
+For example, [?\\C-x ?l] is converted into the string \"C-x l\".
 
 For an approximate inverse of this, see `kbd'.  */)
   (Lisp_Object keys, Lisp_Object prefix)
index 64ec0abad48d38754100ef678fd14db6f7bb9210..749893baad68624c36e76ba6277ebfe3264b7988 100644 (file)
@@ -35581,7 +35581,7 @@ message displayed by its counterpart function specified by
 
   DEFVAR_BOOL ("display-raw-bytes-as-hex", display_raw_bytes_as_hex,
     doc: /* Non-nil means display raw bytes in hexadecimal format.
-The default is to use octal format (\200) whereas hexadecimal (\x80)
+The default is to use octal format (\\200) whereas hexadecimal (\\x80)
 may be more familiar to users.  */);
   display_raw_bytes_as_hex = false;