From 83fd594a3d7abb88f55819d18778112a252e137d Mon Sep 17 00:00:00 2001 From: "Thomas G. Lockhart" Date: Wed, 2 Feb 2000 16:25:04 +0000 Subject: [PATCH] Add short chapter in developer's guide on formatting source code. --- doc/src/sgml/postgres.sgml | 2 + doc/src/sgml/programmer.sgml | 11 ++++-- doc/src/sgml/sources.sgml | 76 ++++++++++++++++++++++++++++++++++++ 3 files changed, 86 insertions(+), 3 deletions(-) create mode 100644 doc/src/sgml/sources.sgml diff --git a/doc/src/sgml/postgres.sgml b/doc/src/sgml/postgres.sgml index 19e5c52807..2546ef0d79 100644 --- a/doc/src/sgml/postgres.sgml +++ b/doc/src/sgml/postgres.sgml @@ -91,6 +91,7 @@ + ]> @@ -268,6 +269,7 @@ Your name here... suggestions for future development. + &sources; &arch-dev; &options; &geqo; diff --git a/doc/src/sgml/programmer.sgml b/doc/src/sgml/programmer.sgml index f6c465af28..8f26bb4c3e 100644 --- a/doc/src/sgml/programmer.sgml +++ b/doc/src/sgml/programmer.sgml @@ -1,9 +1,12 @@ + &sources; &arch-dev; &options; &geqo; @@ -214,7 +219,7 @@ Disable it until we put in some info. diff --git a/doc/src/sgml/sources.sgml b/doc/src/sgml/sources.sgml new file mode 100644 index 0000000000..08a5e6073f --- /dev/null +++ b/doc/src/sgml/sources.sgml @@ -0,0 +1,76 @@ + + Postgres Source Code + + + Formatting + + + Source code formatting uses a 4 column tab spacing, currently with + tabs preserved (i.e. tabs are not expanded to spaces). + + + + For emacs, add the following (or something similar) + to your ~/.emacs + initialization file: + + +;; check for files with a path containing "postgres" or "pgsql" +(setq auto-mode-alist (cons '("\\(postgres\\|pgsql\\).*\\.[ch]\\'" . pgsql-c-mode) auto-mode-alist)) +(setq auto-mode-alist (cons '("\\(postgres\\|pgsql\\).*\\.cc\\'" . pgsql-c-mode) auto-mode-alist)) + +(defun pgsql-c-mode () + ;; sets up formatting for Postgres C code + (interactive) + (c-mode) + (setq-default tab-width 4) + (c-set-style "bsd") ; set c-basic-offset to 4, plus other stuff + (c-set-offset 'case-label '+) ; tweak case indent to match PG custom + (setq indent-tabs-mode t)) ; make sure we keep tabs when indenting + + + + + For vi, your + ~/.vimrc or equivalent file should contain + the following: + + +set tabstop=4 + + + or equivalently from within vi, try + + +:set ts=4 + + + + + The text browsing tools more and + less can be invoked as + + +more -x4 +less -x4 + + + + + +