# HG changeset patch # User Juanma Barranquero # Date 1192004944 0 # Node ID b98ea218eb708e284e0995b4a01a7a8f5353508c # Parent 9a6e9b6e4a76b12a839efdfefd39fa715661d3dd Fix comment; indent-tabs-mode was a bad example, it is not a DEFVAR_INT, but DEFVAR_BOOL. diff -r 9a6e9b6e4a76 -r b98ea218eb70 src/lread.c --- a/src/lread.c Wed Oct 10 04:55:30 2007 +0000 +++ b/src/lread.c Wed Oct 10 08:29:04 2007 +0000 @@ -3689,8 +3689,8 @@ #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 @@ } /* 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;