gnu.emacs.help
[Top] [All Lists]

How to disable ':' from the electric feature?

Subject: How to disable ':' from the electric feature?
From: pierreth
Date: Sun, 16 Mar 2008 12:45:26 -0700 PDT
Newsgroups: gnu.emacs.help

Hello,

I have a problem with the electric feature of emacs when I am writing
in C++. I wrote my switch like this:

        switch(value)
        case dfsfds:
        {
                 fsdff();
        }
        break;

While Emacs expect me to write it like this:

        switch(value)
        case dfsfds:
                 fsdff();
                break;

But this is not my style. Can I disable to the ':' character from the
electric feature?



<Prev in Thread] Current Thread [Next in Thread>