help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

C++ Styles


From: rgb
Subject: C++ Styles
Date: 12 Mar 2007 12:00:22 -0700
User-agent: G2/1.0

Is there a style or setting that will cause this

  enum eFieldTypes {
      eBinary,
      eAscii,
      eEncrypted,
      eOther;
    };

to be fontified properly if I like my brackets to line up.
Either like this

  enum eFieldTypes
    {
      eBinary,
      eAscii,
      eEncrypted,
      eOther;
    };

or this

  enum eFieldTypes
    { eBinary,
      eAscii,
      eEncrypted,
      eOther;
    };



reply via email to

[Prev in Thread] Current Thread [Next in Thread]