From: Barry Warsaw Date: Mon, 9 Dec 1996 23:01:30 +0000 (+0000) Subject: (python-cc-style): Although open braces for substatements typically X-Git-Tag: v1.5a1~836 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5632ce033f3a3ab46d360ac8fbf262769fe90d81;p=thirdparty%2FPython%2Fcpython.git (python-cc-style): Although open braces for substatements typically hang on the right side, if they are on a separate line, indent them under the keyword. --- diff --git a/Misc/ccpy-style.el b/Misc/ccpy-style.el index 9e9e0af62661..4dc1f4265f79 100644 --- a/Misc/ccpy-style.el +++ b/Misc/ccpy-style.el @@ -27,6 +27,8 @@ (defconst python-cc-style '((indent-tabs-mode . t) (c-basic-offset . 8) + (c-offset-alist . ((substatement-open . 0) + )) ) "Standard Python C coding style.")