aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorMiles Bader2006-01-16 06:59:21 +0000
committerMiles Bader2006-01-16 06:59:21 +0000
commit6a2bd1a5019d2130c87ac5cf17f1322bf614b624 (patch)
tree8e72a4a1b7c177b494ae7721f00ea27b14f9f439 /lib-src
parent5bb51be51248803e7400837b83c711854fa86648 (diff)
parent292f71fe67394186e943783bef808c611699b63c (diff)
downloademacs-6a2bd1a5019d2130c87ac5cf17f1322bf614b624.tar.gz
emacs-6a2bd1a5019d2130c87ac5cf17f1322bf614b624.zip
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-95
Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 598-615) - Update from CVS - Remove lisp/toolbar directory - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 142-146) - Update from CVS
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog5
-rw-r--r--lib-src/etags.c5
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 @@
12005-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
12005-09-27 Francesco Potort,Al(B <pot@gnu.org> 62005-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 */
477static bool ignoreindent; /* -I: ignore indentation in C */ 477static bool ignoreindent; /* -I: ignore indentation in C */
478static bool packages_only; /* --packages-only: in Ada, only tag packages*/ 478static 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 */
481static bool parsing_stdin; /* --parse-stdin used */ 486static bool parsing_stdin; /* --parse-stdin used */
482 487