diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-24 19:53:59 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-24 19:53:59 -0400 |
commit | 2f50e30b89a06e2f3c439f4a8440e4d35b4ebb27 (patch) | |
tree | 330f3ffd1e9ae74cebe642409ccc6c351efb8670 /src/global.h | |
parent | bc51cd4651225ad95190880c4d6f71e3a069ebbc (diff) | |
download | fork-ledger-2f50e30b89a06e2f3c439f4a8440e4d35b4ebb27.tar.gz fork-ledger-2f50e30b89a06e2f3c439f4a8440e4d35b4ebb27.tar.bz2 fork-ledger-2f50e30b89a06e2f3c439f4a8440e4d35b4ebb27.zip |
Scopes can now provide a description of themselves
This isn't being used yet, but it likely will to improve the information
presented to users if their value expressions fail to compile or
evaluate.
Diffstat (limited to 'src/global.h')
-rw-r--r-- | src/global.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/global.h b/src/global.h index 115183a5..6504230d 100644 --- a/src/global.h +++ b/src/global.h @@ -55,6 +55,10 @@ public: global_scope_t(char ** envp); ~global_scope_t(); + virtual string description() { + return _("global scope"); + } + void read_init(); void read_environment_settings(char * envp[]); strings_list read_command_arguments(scope_t& scope, strings_list args); |