summaryrefslogtreecommitdiff
path: root/doc/lispref/macros.texi
diff options
context:
space:
mode:
Diffstat (limited to 'doc/lispref/macros.texi')
-rw-r--r--doc/lispref/macros.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/macros.texi b/doc/lispref/macros.texi
index b0dee1bf215..2e1d5302861 100644
--- a/doc/lispref/macros.texi
+++ b/doc/lispref/macros.texi
@@ -35,7 +35,7 @@ instead. @xref{Inline Functions}.
@section A Simple Example of a Macro
Suppose we would like to define a Lisp construct to increment a
-variable value, much like the @code{++} operator in C. We would like to
+variable value, much like the @code{++} operator in C@. We would like to
write @code{(inc x)} and have the effect of @code{(setq x (1+ x))}.
Here's a macro definition that does the job: