diff options
author | Craig Silverstein <csilvers@khanacademy.org> | 2008-05-15 02:40:13 +0000 |
---|---|---|
committer | Craig Silverstein <csilvers@khanacademy.org> | 2008-05-15 02:40:13 +0000 |
commit | b5f25c91c6251fb8320d9d679db9b26516a57aef (patch) | |
tree | 664b60eec3ea4138d0692868b6795bb196cf20ba /src/implicit.h | |
parent | 91597ae8b96c670181d9cd40e02eddd248b7faf6 (diff) | |
download | distcc-git-b5f25c91c6251fb8320d9d679db9b26516a57aef.tar.gz |
Add a consistent emacs-variable header to all source files. This
affects the way emacs users will see these files, when visiting them
in emacs. In particular, tabs will show up as 4 spaces, which is
(clearly) the setting the original distcc author used when writing the
code.
We also set an emacs variable to never insert new tabs, but use spaces
instead. This will help stop the problem we have now with mixed tabs
and spaces. In a future cleanup, we may replace all tabs with 4
spaces, and make other whitespace improvements.
The final new variable set, is to set line-wrapping at 78 chars.
Personally, I would have made it more like 72, but some existing files
already had the 78 limit, so I just do that everywhere, to be
consistent.
Reviewed by fergus@google.com
Diffstat (limited to 'src/implicit.h')
-rw-r--r-- | src/implicit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/implicit.h b/src/implicit.h index 371657d..d9a65f2 100644 --- a/src/implicit.h +++ b/src/implicit.h @@ -1,4 +1,4 @@ -/* -*- c-file-style: "java"; indent-tabs-mode: nil -*- +/* -*- c-file-style: "java"; indent-tabs-mode: nil; tab-width: 4 fill-column: 78 -*- * * distcc -- A simple distributed compiler system * $Header: /data/cvs/distcc/src/implicit.h,v 1.3 2002/09/18 06:57:45 mbp Exp $ |