summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2004-05-09 07:10:12 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:51:49 -0500
commitb91eb9e73a1329576698a1ce4f1e5bef3b63adb0 (patch)
treec12c12f768d22991b298aba776051d52cc4da7a5
parent5c50f79b86d36adc4683c6b8efba50fa69b525cb (diff)
downloadsamba-b91eb9e73a1329576698a1ce4f1e5bef3b63adb0.tar.gz
samba-b91eb9e73a1329576698a1ce4f1e5bef3b63adb0.tar.bz2
samba-b91eb9e73a1329576698a1ce4f1e5bef3b63adb0.zip
r600: Get rid of trailing whitespace which freaks out emacs' fontification.
(This used to be commit d0383e9a7a0a5bee9a52ddc81d5f89c9f01c269b)
-rwxr-xr-xsource4/build/pidl/pidl.pl12
1 files changed, 6 insertions, 6 deletions
diff --git a/source4/build/pidl/pidl.pl b/source4/build/pidl/pidl.pl
index 022dc393d5..46585e2ca5 100755
--- a/source4/build/pidl/pidl.pl
+++ b/source4/build/pidl/pidl.pl
@@ -1,7 +1,7 @@
#!/usr/bin/perl -w
###################################################
-# package to parse IDL files and generate code for
+# package to parse IDL files and generate code for
# rpc functions in Samba
# Copyright tridge@samba.org 2000-2003
# released under the GNU GPL
@@ -118,7 +118,7 @@ sub process_file($)
IdlValidator::Validate($pidl);
if ($opt_keep && !util::SaveStructure($pidl_file, $pidl)) {
die "Failed to save $pidl_file\n";
- }
+ }
} else {
$pidl = util::LoadStructure($pidl_file);
defined $pidl || die "Failed to load $pidl_file - maybe you need --parse\n";
@@ -127,7 +127,7 @@ sub process_file($)
if ($opt_dump) {
print IdlDump::Dump($pidl);
}
-
+
if ($opt_header) {
my($header) = util::ChangeExtension($output, ".h");
util::FileSave($header, IdlHeader::Parse($pidl));
@@ -137,17 +137,17 @@ sub process_file($)
my($server) = util::ChangeExtension($output, "_s.c");
util::FileSave($server, IdlServer::Parse($pidl));
}
-
+
if ($opt_parser) {
my($parser) = util::ChangeExtension($output, ".c");
IdlParser::Parse($pidl, $parser);
}
-
+
if ($opt_eparser) {
my($parser) = util::ChangeExtension($output, "_ethereal.c");
util::FileSave($parser, IdlEParser::Parse($pidl));
}
-
+
if ($opt_diff) {
my($tempfile) = util::ChangeExtension($output, ".tmp");
util::FileSave($tempfile, IdlDump::Dump($pidl));