[PATCH] teach Emacs to wrap docstrings at 76 chars

Martin Geisler mg at lazybytes.net
Thu Jul 2 14:51:31 CDT 2009


# HG changeset patch
# User Martin Geisler <mg at lazybytes.net>
# Date 1246564133 -7200
# Node ID a96d1e755d5777749e852a3077831d5549fa403c
# Parent  fc5737e491939f19530b6e138909df51a7f44d73
teach Emacs to wrap docstrings at 76 chars

The .dir-locals.el file is loaded by Emacs 23 when visiting files in
this directory and all subdirectories.

diff --git a/.dir-locals.el b/.dir-locals.el
new file mode 100644
--- /dev/null
+++ b/.dir-locals.el
@@ -0,0 +1,2 @@
+;; Wrap docstrings at 76 chars to match our standard 4 char indention.
+((python-mode . ((fill-column . 76))))


More information about the Mercurial-devel mailing list