From 8fbdfcf024a1028e757b136445f1f3ca7c6bbfcd Mon Sep 17 00:00:00 2001 From: "ian%hixie.ch" Date: Thu, 10 Oct 2002 21:56:47 +0000 Subject: [PATCH] Support for #literal in case users need to output lines starting with a # git-svn-id: svn://10.0.0.236/trunk@131724 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/config/preprocessor.pl | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mozilla/config/preprocessor.pl b/mozilla/config/preprocessor.pl index 1e24e7a4a9b..b2fdbec029c 100755 --- a/mozilla/config/preprocessor.pl +++ b/mozilla/config/preprocessor.pl @@ -313,6 +313,14 @@ sub expand { print "$line\n"; } +sub literal { + my $stack = shift; + return if $stack->disabled; + die "argument expected\n" unless @_; + my $line = shift; + print "$line\n"; +} + sub include { my $stack = shift; return if $stack->disabled;