13 lines
359 B
EmacsLisp
13 lines
359 B
EmacsLisp
(defun mapnik-format-function ()
|
|
"Format buffer according to mapnik style (TODO)"
|
|
(c-set-style "bsd")
|
|
(c-set-offset 'innamespace 0)
|
|
(c-set-offset 'template-args-cont 'c-lineup-template-args)
|
|
(setq c-basic-offset 4)
|
|
(indent-region (point-min) (point-max) nil)
|
|
(untabify (point-min) (point-max))
|
|
(delete-trailing-whitespace)
|
|
(save-buffer)
|
|
)
|
|
|
|
|