diff options
| author | Paul Eggert | 2013-03-05 09:13:01 -0800 |
|---|---|---|
| committer | Paul Eggert | 2013-03-05 09:13:01 -0800 |
| commit | c38e0c974e11c5c273ef8f6adb58442f4e30f460 (patch) | |
| tree | e58cce0ea0b3de5c4187c43810c641093d8e0419 /lib-src | |
| parent | 11f4d68f254fd7bb62d5148b78a0c9b1d49b97fe (diff) | |
| download | emacs-c38e0c974e11c5c273ef8f6adb58442f4e30f460.tar.gz emacs-c38e0c974e11c5c273ef8f6adb58442f4e30f460.zip | |
Prefer UTF-8 when the encoding shouldn't matter and changes are small.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/etags.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c index ec96f45fc94..c1e12e95da4 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* Tags file maker to go with GNU Emacs -*- coding: latin-1 -*- | 1 | /* Tags file maker to go with GNU Emacs -*- coding: utf-8 -*- |
| 2 | 2 | ||
| 3 | Copyright (C) 1984 The Regents of the University of California | 3 | Copyright (C) 1984 The Regents of the University of California |
| 4 | 4 | ||
| @@ -64,12 +64,12 @@ University of California, as described above. */ | |||
| 64 | * 1985 Emacs TAGS format by Richard Stallman. | 64 | * 1985 Emacs TAGS format by Richard Stallman. |
| 65 | * 1989 Sam Kendall added C++. | 65 | * 1989 Sam Kendall added C++. |
| 66 | * 1992 Joseph B. Wells improved C and C++ parsing. | 66 | * 1992 Joseph B. Wells improved C and C++ parsing. |
| 67 | * 1993 Francesco Potortì reorganized C and C++. | 67 | * 1993 Francesco Potortì reorganized C and C++. |
| 68 | * 1994 Line-by-line regexp tags by Tom Tromey. | 68 | * 1994 Line-by-line regexp tags by Tom Tromey. |
| 69 | * 2001 Nested classes by Francesco Potortì (concept by Mykola Dzyuba). | 69 | * 2001 Nested classes by Francesco Potortì (concept by Mykola Dzyuba). |
| 70 | * 2002 #line directives by Francesco Potortì. | 70 | * 2002 #line directives by Francesco Potortì. |
| 71 | * | 71 | * |
| 72 | * Francesco Potortì <pot@gnu.org> has maintained and improved it since 1993. | 72 | * Francesco Potortì <pot@gnu.org> has maintained and improved it since 1993. |
| 73 | */ | 73 | */ |
| 74 | 74 | ||
| 75 | /* | 75 | /* |
| @@ -4275,7 +4275,7 @@ Asm_labels (FILE *inf) | |||
| 4275 | * Perl variable names: /^(my|local).../ | 4275 | * Perl variable names: /^(my|local).../ |
| 4276 | * Original code by Bart Robinson <lomew@cs.utah.edu> (1995) | 4276 | * Original code by Bart Robinson <lomew@cs.utah.edu> (1995) |
| 4277 | * Additions by Michael Ernst <mernst@alum.mit.edu> (1997) | 4277 | * Additions by Michael Ernst <mernst@alum.mit.edu> (1997) |
| 4278 | * Ideas by Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> (2001) | 4278 | * Ideas by Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> (2001) |
| 4279 | */ | 4279 | */ |
| 4280 | static void | 4280 | static void |
| 4281 | Perl_functions (FILE *inf) | 4281 | Perl_functions (FILE *inf) |
| @@ -5105,7 +5105,7 @@ Texinfo_nodes (FILE *inf) | |||
| 5105 | * Contents of <title>, <h1>, <h2>, <h3> are tags. | 5105 | * Contents of <title>, <h1>, <h2>, <h3> are tags. |
| 5106 | * Contents of <a name=xxx> are tags with name xxx. | 5106 | * Contents of <a name=xxx> are tags with name xxx. |
| 5107 | * | 5107 | * |
| 5108 | * Francesco Potortì, 2002. | 5108 | * Francesco Potortì, 2002. |
| 5109 | */ | 5109 | */ |
| 5110 | static void | 5110 | static void |
| 5111 | HTML_labels (FILE *inf) | 5111 | HTML_labels (FILE *inf) |