actually *do* something for C++ and Makefile files, like the docs say (XXX: many more still missing).

This commit is contained in:
mrg 2000-03-22 13:55:32 +00:00
parent 0aa3615205
commit 9573cdacce
2 changed files with 17 additions and 1 deletions

View file

@ -1,4 +1,5 @@
$NetBSD: patch-sum,v 1.3 1999/09/25 04:06:41 mrg Exp $
$NetBSD: patch-sum,v 1.4 2000/03/22 13:55:32 mrg Exp $
MD5 (patch-aa) = ceb1557ed3b9366f6f4828fda548bd3d
MD5 (patch-ab) = 936e23e5bf89ad06616e46c14e4b7ac6
MD5 (patch-ac) = 4930867cb1fd29306eacd9b52ae7e202

View file

@ -0,0 +1,15 @@
$NetBSD: patch-ac,v 1.1 2000/03/22 13:55:32 mrg Exp $
--- libidu/scanners.c.orig Thu Jul 18 07:45:52 1996
+++ libidu/scanners.c Thu Mar 23 00:42:05 2000
@@ -65,8 +65,10 @@
struct language languages_0[] =
{
{ "C", parse_args_c, get_token_c, help_me_c },
+ { "C++", parse_args_c, get_token_c, help_me_c },
{ "asm", parse_args_asm, get_token_asm, help_me_asm },
{ "text", parse_args_text, get_token_text, help_me_text },
+ { "make", parse_args_text, get_token_text, help_me_text },
};
struct language const *languages_N = &languages_0[cardinalityof (languages_0)];