diff options
| author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2005-10-25 19:49:22 +0000 |
|---|---|---|
| committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2005-10-25 19:49:22 +0000 |
| commit | a8645a4330b91932c5658eeffa01b446e2ee657a (patch) | |
| tree | 726f1be551ed0e70783015186a9dbfea0184a7af /lib/puppet/parser/grammar.ra | |
| parent | df8dbbacb09b69c97aee0b76668fd3e56860eb38 (diff) | |
| download | puppet-a8645a4330b91932c5658eeffa01b446e2ee657a.tar.gz puppet-a8645a4330b91932c5658eeffa01b446e2ee657a.tar.xz puppet-a8645a4330b91932c5658eeffa01b446e2ee657a.zip | |
Further small bug fixes towards running puppet on my network
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@729 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/parser/grammar.ra')
| -rw-r--r-- | lib/puppet/parser/grammar.ra | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/puppet/parser/grammar.ra b/lib/puppet/parser/grammar.ra index 96f043365..fa19ad477 100644 --- a/lib/puppet/parser/grammar.ra +++ b/lib/puppet/parser/grammar.ra @@ -1,6 +1,3 @@ -#/usr/bin/ruby - -# $Id$ # vim: syntax=ruby # the parser @@ -741,9 +738,13 @@ def parse end def reparse? - return @files.detect { |file| file.changed? } + @files.detect { |file| + file.changed? + } end def string=(string) @lexer.string = string end + +# $Id$ |
