From 6932048b9bde89e81df48a0122a14e4784e64d1e Mon Sep 17 00:00:00 2001
From: Bruce Momjian
Date: Fri, 11 Aug 2006 19:18:59 +0000
Subject: [PATCH] Add Neil's presentation to FAQ_DEV.
---
doc/FAQ_DEV | 25 +++++++++++++++++++++++--
doc/src/FAQ/FAQ_DEV.html | 10 ++++++----
2 files changed, 29 insertions(+), 6 deletions(-)
diff --git a/doc/FAQ_DEV b/doc/FAQ_DEV
index 3d27dbd8a47..45529a90693 100644
--- a/doc/FAQ_DEV
+++ b/doc/FAQ_DEV
@@ -1,7 +1,7 @@
Developer's Frequently Asked Questions (FAQ) for PostgreSQL
- Last updated: Tue Jul 11 13:01:46 EDT 2006
+ Last updated: Fri Aug 11 15:18:31 EDT 2006
Current maintainer: Bruce Momjian (bruce@momjian.us)
@@ -292,7 +292,28 @@ General Questions
or
- (c-add-style "pgsql"
+(add-hook 'c-mode-hook
+ (function
+ (lambda nil
+ (if (string-match "pgsql" buffer-file-name)
+ (progn
+ (c-set-style "bsd")
+ (setq c-basic-offset 4)
+ (setq tab-width(add-hook 'c-mode-hook
+ (function
+ (lambda nil
+ (if (string-match "pgsql" buffer-file-name)
+ (progn
+ (c-set-style "bsd")
+ (setq c-basic-offset 4)
+ (setq tab-width(add-hook 'c-mode-hook
+ (function
+ (lambda nil
+ (if (string-match "pgsql" buffer-file-name)
+ (progn
+ (c-set-style "bsd")
+ (setq c-basic-offset 4)
+ (setq tab-width (c-add-style "pgsql"
'("bsd"
(indent-tabs-mode . t)
(c-basic-offset . 4)
diff --git a/doc/src/FAQ/FAQ_DEV.html b/doc/src/FAQ/FAQ_DEV.html
index e872d017d24..c46bc10992a 100644
--- a/doc/src/FAQ/FAQ_DEV.html
+++ b/doc/src/FAQ/FAQ_DEV.html
@@ -13,10 +13,10 @@
Developer's Frequently Asked Questions (FAQ) for
PostgreSQL
- Last updated: Wed Mar 1 17:24:48 EST 2006
+ Last updated: Fri Aug 11 15:15:40 EDT 2006
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
+ "mailto:bruce@momjian.us">bruce@momjian.us)
The most recent version of this document can be viewed at 1.16.
If you are adding a new feature, confirm that it has been tested
- thoroughly. Try to test the feature in all conceivable
+ thoughly. Try to test the feature in all conceivable
scenarios.
If it is a performance patch, please provide confirming test
@@ -222,7 +222,9 @@
Other than documentation in the source tree itself, you can find
some papers/presentations discussing the code at
- http://www.postgresql.org/developer.
+ http://www.postgresql.org/developer. An excellent presentation
+ is at http://neilconway.org/talks/hacking/
1.7) How do I download/update the current
source tree?