diff options
| author | Miles Bader | 2004-12-25 02:00:25 +0000 |
|---|---|---|
| committer | Miles Bader | 2004-12-25 02:00:25 +0000 |
| commit | 6a89b7e95a771e5141bb1718e8278dcf892359ea (patch) | |
| tree | 189a864da85f49e73c6f9220b7231f0c54250e6e /lib-src | |
| parent | 054b6b53c3554c83ae02d24a772a74b63ebb08cd (diff) | |
| parent | 70d16390a08dc9d94c961eb380be8e1b5b496963 (diff) | |
| download | emacs-6a89b7e95a771e5141bb1718e8278dcf892359ea.tar.gz emacs-6a89b7e95a771e5141bb1718e8278dcf892359ea.zip | |
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-79
Merge from emacs--cvs-trunk--0
Patches applied:
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-735
- miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-747
Update from CVS
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 5 | ||||
| -rw-r--r-- | lib-src/etags.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 994102f5a87..d913fbaf2c9 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-12-15 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * etags.c (main): Fix typo in conversion of LONG_OPTIONS from | ||
| 4 | preprocessing to compile time constant. | ||
| 5 | |||
| 1 | 2004-11-17 Kim F. Storm <storm@cua.dk> | 6 | 2004-11-17 Kim F. Storm <storm@cua.dk> |
| 2 | 7 | ||
| 3 | * etags.c: Undo last change. | 8 | * etags.c: Undo last change. |
diff --git a/lib-src/etags.c b/lib-src/etags.c index a6004a048a9..a06d29bfd11 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Tags file maker to go with GNU Emacs -*- coding: latin-1 -*- | 1 | /* Tags file maker to go with GNU Emacs -*- coding: latin-1 -*- |
| 2 | Copyright (C) 1984, 1987-1989, 1993-1995, 1998-2001, 2002 | 2 | Copyright (C) 1984, 1987-1989, 1993-1995, 1998-2001, 2002, 2004 |
| 3 | Free Software Foundation, Inc. and Ken Arnold | 3 | Free Software Foundation, Inc. and Ken Arnold |
| 4 | 4 | ||
| 5 | This file is not considered part of GNU Emacs. | 5 | This file is not considered part of GNU Emacs. |
| @@ -1183,7 +1183,7 @@ main (argc, argv) | |||
| 1183 | #ifdef ETAGS_REGEXPS | 1183 | #ifdef ETAGS_REGEXPS |
| 1184 | optstring = "-r:Rc:"; | 1184 | optstring = "-r:Rc:"; |
| 1185 | #endif /* ETAGS_REGEXPS */ | 1185 | #endif /* ETAGS_REGEXPS */ |
| 1186 | if (LONG_OPTIONS) | 1186 | if (!LONG_OPTIONS) |
| 1187 | optstring += 1; | 1187 | optstring += 1; |
| 1188 | optstring = concat (optstring, | 1188 | optstring = concat (optstring, |
| 1189 | "Cf:Il:o:SVhH", | 1189 | "Cf:Il:o:SVhH", |