Disclaimer: asdoc is a user written command by Dr. Ataullah Shah

I am regressing with a categorical variable of which dummies have been made of using egen with the options label. After I regress the output on my STATA windows shows each of the categories by name whereas asdoc shows them by the name of the dummy variable.
I have used the code
Code:
 egen d_category= group (category), label 
asdoc reg d_depvar i.d_category, dec(5) label replace
How do I get it to output the value labels instead?