From: Eli Zaretskii Date: Sat, 28 Dec 2024 12:04:26 +0000 (+0200) Subject: ; Fix inaccuracy in ELisp Reference manual X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=018bb58096806c5d87ccbd70e1514b12f03bed17;p=emacs.git ; Fix inaccuracy in ELisp Reference manual * doc/lispref/objects.texi (Basic Char Syntax): Fix inaccurate wording. (Bug#75113) (cherry picked from commit 2ba6387d1d63072c5faaa7798c8ef7b00ca883c3) --- diff --git a/doc/lispref/objects.texi b/doc/lispref/objects.texi index df9c2267cc4..c782256390f 100644 --- a/doc/lispref/objects.texi +++ b/doc/lispref/objects.texi @@ -445,7 +445,7 @@ characters which resemble the previously mentioned @acronym{ASCII} ones, to avoid confusing people reading your code. Emacs will highlight some non-escaped commonly confused characters such as @samp{‘} to encourage this. You can also add a backslash before whitespace -characters such as space, tab, newline and formfeed. However, it is +characters such as space and tab. However, it is cleaner to use one of the easily readable escape sequences, such as @samp{\t} or @samp{\s}, instead of an actual whitespace character such as a tab or a space. (If you do write backslash followed by a space,