Commit info for scoop/lib/Scoop/Comments:

Modified Files:
	Format.pm Post.pm 
Log Message:
Macro changes to the core files. -- hulver


Index: Format.pm
===================================================================
RCS file: /cvs/scoop/scoop/lib/Scoop/Comments/Format.pm,v
retrieving revision 1.48
retrieving revision 1.49
diff -r1.48 -r1.49
253a254,257
> 	if (exists($S->{UI}->{VARS}->{use_macros}) && $S->{UI}->{VARS}->{use_macros}) {
> 		$this_comment = $S->process_macros($this_comment);
> 	}
> 

Index: Post.pm
===================================================================
RCS file: /cvs/scoop/scoop/lib/Scoop/Comments/Post.pm,v
retrieving revision 1.65
retrieving revision 1.66
diff -r1.65 -r1.66
675a676,684
> 
> 	# if using macros, and 'render on save' is on, then render the macro(s) before saving.
> 
> 	if (exists($S->{UI}->{VARS}->{use_macros}) && $S->{UI}->{VARS}->{use_macros}
> 		&& defined($S->{UI}->{VARS}->{macro_render_on_save})
> 		&& $S->{UI}->{VARS}->{macro_render_on_save}) {
> 		$comment = $S->process_macros($comment);
> 	}
>