diff options
| author | Karoly Lorentey | 2005-10-23 22:47:29 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2005-10-23 22:47:29 +0000 |
| commit | 6dc59f76f49a35140b3bbdeb9c495609f8e55f3a (patch) | |
| tree | 3694df29f4ce4ab94220bd377cd0d32b64f98b0a /lib-src | |
| parent | a095475c5f316eed7b27f6e0e6df52dae53dc2a5 (diff) | |
| parent | c286104c51b4510ead8e92d265a84aa661ddbf97 (diff) | |
| download | emacs-6dc59f76f49a35140b3bbdeb9c495609f8e55f3a.tar.gz emacs-6dc59f76f49a35140b3bbdeb9c495609f8e55f3a.zip | |
Merged from miles@gnu.org--gnu-2005 (patch 610-614)
Patches applied:
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-610
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-611
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-612
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-613
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-614
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-429
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 5 | ||||
| -rw-r--r-- | lib-src/etags.c | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index c2e6ef390ee..2f584879147 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-10-20 Olli Savia <ops@iki.fi> (tiny change) | ||
| 2 | |||
| 3 | * etags.c: Undef STDIN if defined. (LynxOS defines it in system | ||
| 4 | header files.) | ||
| 5 | |||
| 1 | 2005-09-27 Francesco Potort,Al(B <pot@gnu.org> | 6 | 2005-09-27 Francesco Potort,Al(B <pot@gnu.org> |
| 2 | 7 | ||
| 3 | * etags.c: Preliminary Forth support. | 8 | * etags.c: Preliminary Forth support. |
diff --git a/lib-src/etags.c b/lib-src/etags.c index c8102ec1548..de0a2cf950b 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c | |||
| @@ -477,6 +477,11 @@ static bool cplusplus; /* .[hc] means C++, not C */ | |||
| 477 | static bool ignoreindent; /* -I: ignore indentation in C */ | 477 | static bool ignoreindent; /* -I: ignore indentation in C */ |
| 478 | static bool packages_only; /* --packages-only: in Ada, only tag packages*/ | 478 | static bool packages_only; /* --packages-only: in Ada, only tag packages*/ |
| 479 | 479 | ||
| 480 | /* STDIN is defined in LynxOS system headers */ | ||
| 481 | #ifdef STDIN | ||
| 482 | #undef STDIN | ||
| 483 | #endif | ||
| 484 | |||
| 480 | #define STDIN 0x1001 /* returned by getopt_long on --parse-stdin */ | 485 | #define STDIN 0x1001 /* returned by getopt_long on --parse-stdin */ |
| 481 | static bool parsing_stdin; /* --parse-stdin used */ | 486 | static bool parsing_stdin; /* --parse-stdin used */ |
| 482 | 487 | ||