https://github.com/postgres/postgres
Revision 9b450b1f1e5bbeac414bbb8e6a2f08fa40f470ff authored by Peter Eisentraut on 12 July 2021, 20:07:35 UTC, committed by Peter Eisentraut on 12 July 2021, 20:17:30 UTC
1 parent 2332808
Raw File
Tip revision: 9b450b1f1e5bbeac414bbb8e6a2f08fa40f470ff authored by Peter Eisentraut on 12 July 2021, 20:07:35 UTC
doc: Fix typo in function prototype
Tip revision: 9b450b1
.dir-locals.el
;; see also src/tools/editors/emacs.samples for more complete settings

((c-mode . ((c-basic-offset . 4)
            (c-file-style . "bsd")
            (fill-column . 78)
            (indent-tabs-mode . t)
            (tab-width . 4)))
 (nxml-mode . ((fill-column . 78)
               (indent-tabs-mode . nil)))
 (perl-mode . ((perl-indent-level . 4)
               (perl-continued-statement-offset . 2)
               (perl-continued-brace-offset . -2)
               (perl-brace-offset . 0)
               (perl-brace-imaginary-offset . 0)
               (perl-label-offset . -2)
               (indent-tabs-mode . t)
               (tab-width . 4)))
 (sgml-mode . ((fill-column . 78)
               (indent-tabs-mode . nil))))
back to top