Dear JDE experts,

I have got jde2.1.5 setup on NT Emacs-20.3.1 and everything is running
great.  I can really appreciate the functionalities JDE provides.  There is
one minor thing that I can not figure out how to get done.

The code style (indentation) for continuing brackets are 2 spaces to the
right of the previous statement as follows;

        
        if (Debug.isOn("cache,kernel,imancomponent"))
          {   // 2 spaces to the right
            Debug.addToLoadedTags(tag);  // 2 spaces to the right
          }

Would anyone show me how to make it like the following?

        if (Debug.isOn("cache,kernel,imancomponent"))
        {  // line up with the previous statement
            Debug.addToLoadedTags(tag);   // 4 spaces to the right    
        }

Thank you.

Jon

Reply via email to