diff options
| author | Juanma Barranquero | 2007-10-10 08:29:04 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-10-10 08:29:04 +0000 |
| commit | 0f011df0d134243fadf4751b0ad6e83f8e1310ed (patch) | |
| tree | 70ad2d092342d3ab062cc6aea950829bfaeb04e1 /src | |
| parent | 311dd93fa2834dfcda92b0a80f41eaba54d0b632 (diff) | |
| download | emacs-0f011df0d134243fadf4751b0ad6e83f8e1310ed.tar.gz emacs-0f011df0d134243fadf4751b0ad6e83f8e1310ed.zip | |
Fix comment; indent-tabs-mode was a bad example,
it is not a DEFVAR_INT, but DEFVAR_BOOL.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lread.c | 6 |
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"); */ |
| 3694 | void | 3694 | void |
| 3695 | defvar_int (namestring, address) | 3695 | defvar_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. */ |
| 3709 | void | 3709 | void |
| 3710 | defvar_bool (namestring, address) | 3710 | defvar_bool (namestring, address) |
| 3711 | char *namestring; | 3711 | char *namestring; |