aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/syntax.texi8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/lispref/syntax.texi b/doc/lispref/syntax.texi
index 7a984e3d87b..831ebd12f55 100644
--- a/doc/lispref/syntax.texi
+++ b/doc/lispref/syntax.texi
@@ -945,6 +945,14 @@ whitespace by the functions in this section and by @code{forward-sexp},
945The behavior of @code{parse-partial-sexp} is also affected by 945The behavior of @code{parse-partial-sexp} is also affected by
946@code{parse-sexp-lookup-properties} (@pxref{Syntax Properties}). 946@code{parse-sexp-lookup-properties} (@pxref{Syntax Properties}).
947 947
948@defvar comment-end-can-be-escaped
949If this buffer local variable is non-@code{nil}, a single character
950which usually terminates a comment doesn't do so when that character
951is escaped. This is used in C and C++ Modes, where line comments
952starting with @samp{//} can be continued onto the next line by
953escaping the newline with @samp{\}.
954@end defvar
955
948You can use @code{forward-comment} to move forward or backward over 956You can use @code{forward-comment} to move forward or backward over
949one comment or several comments. 957one comment or several comments.
950 958