aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-08-06 07:11:59 +0000
committerRichard M. Stallman1997-08-06 07:11:59 +0000
commit829a5736b99738193a56f98fb2d5a5e1c04c17f7 (patch)
tree3c2b9bb0d004079de78a2259c818a98961dfdd7f /lib-src
parent657fcfbd4150f53c40223693688cba83bc91e9b3 (diff)
downloademacs-829a5736b99738193a56f98fb2d5a5e1c04c17f7.tar.gz
emacs-829a5736b99738193a56f98fb2d5a5e1c04c17f7.zip
(Yacc_suffixes, Asm_suffixes): Add some alternatives.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/etags.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c
index 11f4f6a97a2..3e3407bba5b 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -366,6 +366,7 @@ char *Asm_suffixes [] = { "a", /* Unix assembler */
366 "inc", /* Microcontroller include files */ 366 "inc", /* Microcontroller include files */
367 "ins", /* Microcontroller include files */ 367 "ins", /* Microcontroller include files */
368 "s", "sa", /* Unix assembler */ 368 "s", "sa", /* Unix assembler */
369 "S", /* cpp-processed Unix assembler */
369 "src", /* BSO/Tasking C compiler output */ 370 "src", /* BSO/Tasking C compiler output */
370 NULL 371 NULL
371 }; 372 };
@@ -427,7 +428,7 @@ char *TeX_suffixes [] =
427 { "TeX", "bib", "clo", "cls", "ltx", "sty", "tex", NULL }; 428 { "TeX", "bib", "clo", "cls", "ltx", "sty", "tex", NULL };
428 429
429char *Yacc_suffixes [] = 430char *Yacc_suffixes [] =
430 { "y", "ym", NULL }; /* .ym is Objective yacc file */ 431 { "y", "ym", "yy", "yxx", "y++", NULL }; /* .ym is Objective yacc file */
431 432
432/* Table of language names and corresponding functions, file suffixes 433/* Table of language names and corresponding functions, file suffixes
433 and interpreter names. 434 and interpreter names.