diff options
| author | Glenn Morris | 2010-10-22 01:02:31 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-10-22 01:02:31 -0700 |
| commit | 039c6cc33e93a240921b43cf70fbbd43b8ba7018 (patch) | |
| tree | 8482374b88c6eee3048d7b83c46274108b0a2537 /src | |
| parent | dee186b61d9f2528ed1f2125035dd7e5e5a12f2a (diff) | |
| download | emacs-039c6cc33e93a240921b43cf70fbbd43b8ba7018.tar.gz emacs-039c6cc33e93a240921b43cf70fbbd43b8ba7018.zip | |
Obscure an example DEFVAR_INT comment so as to evade make-docfile.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lread.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/lread.c b/src/lread.c index 66b1a8068c2..f1c1bcd44c0 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -1,7 +1,8 @@ | |||
| 1 | /* Lisp parsing and input streams. | 1 | /* Lisp parsing and input streams. |
| 2 | Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, 1995, | 2 | |
| 3 | 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, | 3 | Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, 1995, 1997, |
| 4 | 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. | 4 | 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, |
| 5 | 2009, 2010 Free Software Foundation, Inc. | ||
| 5 | 6 | ||
| 6 | This file is part of GNU Emacs. | 7 | This file is part of GNU Emacs. |
| 7 | 8 | ||
| @@ -3889,9 +3890,9 @@ defalias (sname, string) | |||
| 3889 | } | 3890 | } |
| 3890 | #endif /* NOTDEF */ | 3891 | #endif /* NOTDEF */ |
| 3891 | 3892 | ||
| 3892 | /* Define an "integer variable"; a symbol whose value is forwarded | 3893 | /* Define an "integer variable"; a symbol whose value is forwarded to a |
| 3893 | to a C variable of type int. Sample call: | 3894 | C variable of type int. Sample call (munged w "xx" to fool make-docfile): |
| 3894 | DEFVAR_INT ("emacs-priority", &emacs_priority, "Documentation"); */ | 3895 | DEFxxVAR_INT ("emacs-priority", &emacs_priority, "Documentation"); */ |
| 3895 | void | 3896 | void |
| 3896 | defvar_int (struct Lisp_Intfwd *i_fwd, | 3897 | defvar_int (struct Lisp_Intfwd *i_fwd, |
| 3897 | const char *namestring, EMACS_INT *address) | 3898 | const char *namestring, EMACS_INT *address) |
| @@ -4474,5 +4475,3 @@ to load. See also `load-dangerous-libraries'. */); | |||
| 4474 | staticpro (&Qrehash_threshold); | 4475 | staticpro (&Qrehash_threshold); |
| 4475 | } | 4476 | } |
| 4476 | 4477 | ||
| 4477 | /* arch-tag: a0d02733-0f96-4844-a659-9fd53c4f414d | ||
| 4478 | (do not change this comment) */ | ||