summaryrefslogtreecommitdiff
path: root/src/lread.c
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2007-10-10 08:29:04 +0000
committerJuanma Barranquero <lekktu@gmail.com>2007-10-10 08:29:04 +0000
commita3995261e14dffe9a4e1a9424ee950d5f7a4300b (patch)
tree9db9cf37f94edb869fa06a2fc78c2650c8d6a845 /src/lread.c
parent4b0a34c7965831d35d107e9d34e74d4f43a45402 (diff)
downloademacs-a3995261e14dffe9a4e1a9424ee950d5f7a4300b.tar.gz
Fix comment; indent-tabs-mode was a bad example,
it is not a DEFVAR_INT, but DEFVAR_BOOL.
Diffstat (limited to 'src/lread.c')
-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)
#endif /* NOTDEF */
/* Define an "integer variable"; a symbol whose value is forwarded
- to a C variable of type int. Sample call: */
- /* DEFVAR_INT ("indent-tabs-mode", &indent_tabs_mode, "Documentation"); */
+ to a C variable of type int. Sample call:
+ DEFVAR_INT ("emacs-priority", &emacs_priority, "Documentation"); */
void
defvar_int (namestring, address)
char *namestring;
@@ -3705,7 +3705,7 @@ defvar_int (namestring, address)
}
/* Similar but define a variable whose value is t if address contains 1,
- nil if address contains 0 */
+ nil if address contains 0. */
void
defvar_bool (namestring, address)
char *namestring;