diff options
author | Miles Bader <miles@gnu.org> | 2007-10-13 05:53:03 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2007-10-13 05:53:03 +0000 |
commit | 2b42d458a45eaf9767da327f76a40a1cf9c77c23 (patch) | |
tree | f896828e65199d043ea7ab366fffea8bd315a986 /src/lread.c | |
parent | 3e88ae627ef8d827b3f79e4e6f14aaad7adfe322 (diff) | |
parent | e2cfa9afa691fb8b7a554cb685c16ff3d4e1ff2b (diff) | |
download | emacs-2b42d458a45eaf9767da327f76a40a1cf9c77c23.tar.gz emacs-2b42d458a45eaf9767da327f76a40a1cf9c77c23.tar.bz2 emacs-2b42d458a45eaf9767da327f76a40a1cf9c77c23.zip |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 880-885)
- Remove RCS keywords from doc/misc/cc-mode.texi
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-264
Diffstat (limited to 'src/lread.c')
-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 3975c0bfcd0..1bcad4672f0 100644 --- a/src/lread.c +++ b/src/lread.c @@ -3821,8 +3821,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; @@ -3837,7 +3837,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; |