# HG changeset patch # User Richard M. Stallman # Date 767737848 0 # Node ID 25300b83f0dd21d69ae40bfc038ef327488b3df9 # Parent e781f7d5ae04a0730d1968ed829b8d2e09334b84 (find_entries): Treat `*.cpp' as C++ files. diff -r e781f7d5ae04 -r 25300b83f0dd lib-src/etags.c --- a/lib-src/etags.c Sat Apr 30 20:28:50 1994 +0000 +++ b/lib-src/etags.c Sat Apr 30 20:30:48 1994 +0000 @@ -783,9 +783,10 @@ Asm_labels (inf); goto close_and_return; } - /* .C or .H or .cxx or .hxx or .cc: a C++ file */ + /* .C or .H or .cxx or .hxx or .cc or .cpp: a C++ file */ if (cp && (streq (cp1, "C") || streq (cp1, "H") + || streq (cp1, "cpp") || streq (cp1, "cxx") || streq (cp1, "hxx") || streq (cp1, "cc")))