FAQ_DEV updated.  Thanks.

---------------------------------------------------------------------------

Andrew Dunstan wrote:
> The Developer FAQ is slightly awry for emacs settings, or at least it was for my 
> setup. 
> 
> Here's what I ended up getting to work 
> 
> ;;-----------------
> (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")
> )
> 
> (setq auto-mode-alist
>               (cons '("\\`/home/andrew/pgsql/.*\\.[chyl]\\'" . pgsql-c-mode)
>             auto-mode-alist))
> ;;--------------------------
> 
> (and if this doesn't show that despite my pushing for a W32 port I'm a Unix guy at 
> heart, nothing will :-) 
> 
> andrew

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  [EMAIL PROTECTED]               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073

---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to [EMAIL PROTECTED] so that your
message can get through to the mailing list cleanly

Reply via email to