From b7502abfe22f8dc009b21cda1172af221d8f9f32 Mon Sep 17 00:00:00 2001 From: James Cloos Date: Sun, 7 Dec 2008 04:09:46 -0500 Subject: [PATCH] Revert "For nls/*.pre, allow people to comment lines by starting them with '##'." As of commit c9d20e3 the initial double-hashes are replaced with proper C comments. This reverts commit a225a0be48770beb689d5ac5da97073634f7deab. --- cpprules.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cpprules.in b/cpprules.in index b8857bae..12964fa8 100644 --- a/cpprules.in +++ b/cpprules.in @@ -24,6 +24,5 @@ CPP_SED_MAGIC = $(SED) -e '/^\# *[0-9][0-9]* *.*$$/d' \ -e '/^[ ]*XHASH/s/XHASH/\#/' \ -e '/\@\@$$/s/\@\@$$/\\/' -# Allow people to comment out lines by starting them with '##' .pre: - $(SED) -e '/^\#\#/d' $< | $(RAWCPP) $(RAWCPPFLAGS) $(CPP_FILES_FLAGS) | $(CPP_SED_MAGIC) > $@ + $(RAWCPP) $(RAWCPPFLAGS) $(CPP_FILES_FLAGS) < $< | $(CPP_SED_MAGIC) > $@