Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ce0ae3a9
Commit
ce0ae3a9
authored
Oct 20, 2005
by
Eli Zaretskii
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Undef STDIN if defined. (LynxOS defines it in system header files.)
parent
26e9d2cf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
lib-src/ChangeLog
lib-src/ChangeLog
+5
-0
lib-src/etags.c
lib-src/etags.c
+5
-0
No files found.
lib-src/ChangeLog
View file @
ce0ae3a9
2005-10-06 Olli Savia <ops@iki.fi> (tiny change)
* etags.c: Undef STDIN if defined. (LynxOS defines it in system
header files.)
2005-09-27 Francesco Potort,Al(B <pot@gnu.org>
* etags.c: Preliminary Forth support.
...
...
lib-src/etags.c
View file @
ce0ae3a9
...
...
@@ -477,6 +477,11 @@ static bool cplusplus; /* .[hc] means C++, not C */
static bool ignoreindent; /* -I: ignore indentation in C */
static bool packages_only; /* --packages-only: in Ada, only tag packages*/
/* STDIN is defined in LynxOS system headers */
#ifdef STDIN
#undef STDIN
#endif
#define STDIN 0x1001 /* returned by getopt_long on --parse-stdin */
static bool parsing_stdin; /* --parse-stdin used */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment