diff options
author | Peter Eisentraut | 2011-04-22 21:44:45 +0000 |
---|---|---|
committer | Peter Eisentraut | 2011-04-22 21:47:01 +0000 |
commit | 78e7e20afe768d9c5f6b4fbf30a2d7100d46bb2f (patch) | |
tree | 49330d805f72d67f2c0c3396d6cf2de1f6c3b4e7 | |
parent | 415f5e12592d135919549a5eb21893fda0417ebf (diff) |
Small update to emacs example configuration
Since both tarballs and git now result in a "postgresql" directory
rather than a "pgsql" directory, adjust the example configuration to
look for the former.
-rw-r--r-- | src/tools/editors/emacs.samples | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/editors/emacs.samples b/src/tools/editors/emacs.samples index 77a8f3959f..d9cfa2ffd8 100644 --- a/src/tools/editors/emacs.samples +++ b/src/tools/editors/emacs.samples @@ -67,7 +67,7 @@ (add-hook 'c-mode-hook (function (lambda nil - (if (string-match "pgsql" buffer-file-name) + (if (string-match "postgresql" buffer-file-name) (progn (c-set-style "bsd") (setq c-basic-offset 4) |