diff options
| author | fukachan <fukachan> | 2004-11-23 16:02:20 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2004-11-23 16:02:20 +0000 |
| commit | 2976d4030b49f05fc1ce934ac74a4f96fdf3a5ad (patch) | |
| tree | 1f2acbfe00cbdcb73fd8223d4f34e62a4250604f /fml/lib/FML/Config | |
| parent | a97e38114f7dd56d2537ea18db14be420901d0bf (diff) | |
| download | fml8-2976d4030b49f05fc1ce934ac74a4f96fdf3a5ad.tar.gz fml8-2976d4030b49f05fc1ce934ac74a4f96fdf3a5ad.tar.bz2 fml8-2976d4030b49f05fc1ce934ac74a4f96fdf3a5ad.zip | |
fix comments (FNF).
Diffstat (limited to 'fml/lib/FML/Config')
| -rw-r--r-- | fml/lib/FML/Config/Menu.pm | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/fml/lib/FML/Config/Menu.pm b/fml/lib/FML/Config/Menu.pm index 62921978..5c43291e 100644 --- a/fml/lib/FML/Config/Menu.pm +++ b/fml/lib/FML/Config/Menu.pm @@ -4,7 +4,7 @@ # All rights reserved. This program is free software; you can # redistribute it and/or modify it under the same terms as Perl itself. # -# $FML: Menu.pm,v 1.1 2004/11/21 05:36:12 fukachan Exp $ +# $FML: Menu.pm,v 1.2 2004/11/21 07:01:32 fukachan Exp $ # package FML::Config::Menu; @@ -271,6 +271,11 @@ sub rewrite_config_cf } +# Descriptions: get difference between the current and default configuration. +# return the result as HASH_REF. +# Arguments: OBJ($self) VAR_ARGS(@files) +# Side Effects: none +# Return Value: HASH_REF sub _get_diff_as_hash_ref { my ($self, @files) = @_; @@ -285,6 +290,10 @@ sub _get_diff_as_hash_ref } +# Descriptions: get difference between specified hashes. +# Arguments: OBJ($self) HASH_REF($hash) HASH_REF($hash_new) +# Side Effects: none +# Return Value: HASH_REF sub _get_diff_between_hash_ref { my ($self, $hash, $hash_new) = @_; |
