aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lread.c b/src/lread.c
index ae02b454333..5418d82a968 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -3689,8 +3689,8 @@ defalias (sname, string)
3689#endif /* NOTDEF */ 3689#endif /* NOTDEF */
3690 3690
3691/* Define an "integer variable"; a symbol whose value is forwarded 3691/* Define an "integer variable"; a symbol whose value is forwarded
3692 to a C variable of type int. Sample call: */ 3692 to a C variable of type int. Sample call:
3693 /* DEFVAR_INT ("indent-tabs-mode", &indent_tabs_mode, "Documentation"); */ 3693 DEFVAR_INT ("emacs-priority", &emacs_priority, "Documentation"); */
3694void 3694void
3695defvar_int (namestring, address) 3695defvar_int (namestring, address)
3696 char *namestring; 3696 char *namestring;
@@ -3705,7 +3705,7 @@ defvar_int (namestring, address)
3705} 3705}
3706 3706
3707/* Similar but define a variable whose value is t if address contains 1, 3707/* Similar but define a variable whose value is t if address contains 1,
3708 nil if address contains 0 */ 3708 nil if address contains 0. */
3709void 3709void
3710defvar_bool (namestring, address) 3710defvar_bool (namestring, address)
3711 char *namestring; 3711 char *namestring;