summaryrefslogtreecommitdiff
path: root/src/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c
index 70f533842b9..046d86dc5ac 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -918,7 +918,7 @@ usage: (defvar SYMBOL &optional INITVALUE DOCSTRING) */)
DEFUN ("defvar-1", Fdefvar_1, Sdefvar_1, 2, 3, 0,
doc: /* Like `defvar' but as a function.
-More specifically behaves like (defvar SYM 'INITVALUE DOCSTRING). */)
+More specifically behaves like (defvar SYM \\='INITVALUE DOCSTRING). */)
(Lisp_Object sym, Lisp_Object initvalue, Lisp_Object docstring)
{
return defvar (sym, initvalue, docstring, false);
@@ -959,7 +959,7 @@ usage: (defconst SYMBOL INITVALUE [DOCSTRING]) */)
DEFUN ("defconst-1", Fdefconst_1, Sdefconst_1, 2, 3, 0,
doc: /* Like `defconst' but as a function.
-More specifically, behaves like (defconst SYM 'INITVALUE DOCSTRING). */)
+More specifically, behaves like (defconst SYM \\='INITVALUE DOCSTRING). */)
(Lisp_Object sym, Lisp_Object initvalue, Lisp_Object docstring)
{
CHECK_SYMBOL (sym);