diff options
| author | Juanma Barranquero | 2011-11-16 18:47:25 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2011-11-16 18:47:25 +0100 |
| commit | 7877f37394a0bea045c8d0faf7db7a7e1b4ccdc1 (patch) | |
| tree | 334fa246f6537c6fbdb73be78c873416b2b9bf44 /lib-src | |
| parent | 10649b828d6b2c7bfc41dde3386c980bcd48c0b3 (diff) | |
| download | emacs-7877f37394a0bea045c8d0faf7db7a7e1b4ccdc1.tar.gz emacs-7877f37394a0bea045c8d0faf7db7a7e1b4ccdc1.zip | |
Fix typos.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 6 | ||||
| -rw-r--r-- | lib-src/etags.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index e1afec18bd7..c763d7dce39 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -4634,9 +4634,9 @@ | |||
| 4634 | 4634 | ||
| 4635 | 1997-05-12 Francesco Potortì <F.Potorti@cnuce.cnr.it> | 4635 | 1997-05-12 Francesco Potortì <F.Potorti@cnuce.cnr.it> |
| 4636 | 4636 | ||
| 4637 | * etags.c (Cplusplus_suffixes): .pdb is Postscript with C syntax. | 4637 | * etags.c (Cplusplus_suffixes): .pdb is PostScript with C syntax. |
| 4638 | (Postscript_suffixes): .ps is Postscript. | 4638 | (Postscript_suffixes): .ps is PostScript. |
| 4639 | (lang_names): Add Postscript. | 4639 | (lang_names): Add postscript. |
| 4640 | (Postscript_functions): New function. | 4640 | (Postscript_functions): New function. |
| 4641 | (TEX_decode_env): Close minor memory leak. | 4641 | (TEX_decode_env): Close minor memory leak. |
| 4642 | (just_read_file): Correct the char number of the tag. | 4642 | (just_read_file): Correct the char number of the tag. |
diff --git a/lib-src/etags.c b/lib-src/etags.c index 5bd8077265f..b739e8f00c5 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c | |||
| @@ -611,7 +611,7 @@ using `--declarations'."; | |||
| 611 | static const char *Cplusplus_suffixes [] = | 611 | static const char *Cplusplus_suffixes [] = |
| 612 | { "C", "c++", "cc", "cpp", "cxx", "H", "h++", "hh", "hpp", "hxx", | 612 | { "C", "c++", "cc", "cpp", "cxx", "H", "h++", "hh", "hpp", "hxx", |
| 613 | "M", /* Objective C++ */ | 613 | "M", /* Objective C++ */ |
| 614 | "pdb", /* Postscript with C syntax */ | 614 | "pdb", /* PostScript with C syntax */ |
| 615 | NULL }; | 615 | NULL }; |
| 616 | static const char Cplusplus_help [] = | 616 | static const char Cplusplus_help [] = |
| 617 | "In C++ code, all the tag constructs of C code are tagged. (Use\n\ | 617 | "In C++ code, all the tag constructs of C code are tagged. (Use\n\ |
| @@ -4846,7 +4846,7 @@ Lua_functions (FILE *inf) | |||
| 4846 | 4846 | ||
| 4847 | 4847 | ||
| 4848 | /* | 4848 | /* |
| 4849 | * Postscript tags | 4849 | * PostScript tags |
| 4850 | * Just look for lines where the first character is '/' | 4850 | * Just look for lines where the first character is '/' |
| 4851 | * Also look at "defineps" for PSWrap | 4851 | * Also look at "defineps" for PSWrap |
| 4852 | * Ideas by: | 4852 | * Ideas by: |