repo.or.cz
/
GalaxyCodeBases.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
new file: bin/f200M.js
[GalaxyCodeBases.git]
/
tools
/
vbindiff
/
cjm-style.el
blob
31e648cde970f13bf4bebb324224011413857ef8
1
;; cjm-style.el
2
;;
3
;; My coding style for Emacs' CC-Mode:
4
5
(
defconst
cjm-c-style
6
'((
c-basic-offset
.
2
)
7
(
c-electric-pound-behavior
.
(
alignleft
))
8
(
c-offsets-alist
9
.
((
access-label
.
/)
10
(
arglist-close
.
0
)
11
(
arglist-intro
.
+)
12
(
case-label
.
*)
13
(
label
.
*)
14
(
member-init-intro
.
0
)
15
(
topmost-intro-cont
.
+)
16
(
statement-case-intro
.
*)))))
17
(
c-add-style
"cjm"
cjm-c-style
)