diff options
Diffstat (limited to 'doc/FAQ_DEV')
-rw-r--r-- | doc/FAQ_DEV | 34 |
1 files changed, 21 insertions, 13 deletions
diff --git a/doc/FAQ_DEV b/doc/FAQ_DEV index ae9d7fbf88f..6a6f1d51d5e 100644 --- a/doc/FAQ_DEV +++ b/doc/FAQ_DEV @@ -1,7 +1,7 @@ Developer's Frequently Asked Questions (FAQ) for PostgreSQL - Last updated: Fri Feb 14 08:59:10 EST 2003 + Last updated: Mon Jun 2 00:34:39 EDT 2003 Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us) @@ -226,22 +226,29 @@ less -x4 emacs: M-x set-variable tab-width + or - ; Cmd to set tab stops & indenting for working with PostgreSQL code - (c-add-style "pgsql" - '("bsd" - (indent-tabs-mode . t) - (c-basic-offset . 4) - (tab-width . 4) - (c-offsets-alist . - ((case-label . +)))) - t) ; t = set this mode on + + (c-add-style "pgsql" + '("bsd" + (indent-tabs-mode . t) + (c-basic-offset . 4) + (tab-width . 4) + (c-offsets-alist . + ((case-label . +))) + ) + nil ) ; t = set this style, nil = don't + + (defun pgsql-c-mode () + (c-mode) + (c-set-style "pgsql") + ) and add this to your autoload list (modify file path in macro): (setq auto-mode-alist - (cons '("\\`/usr/local/src/pgsql/.*\\.[chyl]\\'" . pgsql-c-mode) - auto-mode-alist)) + (cons '("\\`/home/andrew/pgsql/.*\\.[chyl]\\'" . pgsql-c-mode) + auto-mode-alist)) or /* * Local variables: @@ -505,7 +512,8 @@ standard must be purchased from ANSI at http://webstore.ansi.org/ansidocstore/default.asp. The main standards documents are ANSI X3.135-1992 for SQL92 and ANSI/ISO/IEC 9075-2-1999 - for SQL99. + for SQL99. The SQL 200X standards are at + ftp://sqlstandards.org/SC32/WG3/Progression_Documents/FCD A summary of these standards is at http://dbs.uni-leipzig.de/en/lokal/standards.pdf and |