1996-12-09 17:57:25 -04:00
|
|
|
;;; ccpy-style.el --- cc-mode style definition for Python C code
|
|
|
|
;;
|
1999-12-01 18:52:19 -04:00
|
|
|
;; Author: 1996 Barry A. Warsaw
|
1999-12-01 18:46:09 -04:00
|
|
|
;; Created: 6-Dec-1996
|
1996-12-09 17:57:25 -04:00
|
|
|
;; Keywords: c python languages oop
|
|
|
|
|
|
|
|
;;; Commentary
|
1999-12-01 18:38:59 -04:00
|
|
|
;;
|
|
|
|
;; NOTE: This file is obsolete! All current versions of CC Mode
|
|
|
|
;; include a "python" style by default.
|
|
|
|
|
1996-12-09 17:57:25 -04:00
|
|
|
;; This file defines the standard C coding style for Python C files
|
|
|
|
;; and modules. It is compatible with cc-mode.el which should be a
|
|
|
|
;; standard part of your Emacs distribution (or see
|
1999-12-01 19:30:46 -04:00
|
|
|
;; <http://www.python.org/emacs/cc-mode>).
|
1996-12-09 17:57:25 -04:00
|
|
|
|
|
|
|
;; To use, make sure this file is on your Emacs load-path, and simply
|
|
|
|
;; add this to your .emacs file:
|
|
|
|
;;
|
|
|
|
;; (add-hook 'c-mode-common-hook '(lambda () (require 'python-style)))
|
|
|
|
|
|
|
|
;; This file will self-install on your c-style-alist variable,
|
|
|
|
;; although you will have to install it on a per-file basis with:
|
|
|
|
;;
|
1996-12-09 18:07:22 -04:00
|
|
|
;; M-x c-set-style RET python RET
|
1996-12-09 17:57:25 -04:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(defconst python-cc-style
|
1996-12-09 18:07:22 -04:00
|
|
|
'((indent-tabs-mode . t)
|
1996-12-09 17:57:25 -04:00
|
|
|
(c-basic-offset . 8)
|
1996-12-20 12:42:04 -04:00
|
|
|
(c-offsets-alist . ((substatement-open . 0)
|
|
|
|
))
|
1996-12-20 12:43:32 -04:00
|
|
|
(c-hanging-braces-alist . ((brace-list-open)
|
1996-12-20 12:42:04 -04:00
|
|
|
(brace-list-intro)
|
|
|
|
(brace-list-close)
|
|
|
|
(substatement-open after)
|
|
|
|
(block-close . c-snug-do-while)
|
|
|
|
))
|
1996-12-09 17:57:25 -04:00
|
|
|
)
|
|
|
|
"Standard Python C coding style.")
|
|
|
|
|
|
|
|
(require 'cc-mode)
|
|
|
|
(if (not (assoc "python" c-style-alist))
|
|
|
|
(c-add-style "python" python-cc-style))
|
1996-12-10 12:29:21 -04:00
|
|
|
|
|
|
|
(provide 'ccpy-style)
|
|
|
|
;;; ccpy-style.el ends here
|