diff options
author | Phil Pennock <pdpennock@users.sourceforge.net> | 2012-12-17 11:29:36 +0000 |
---|---|---|
committer | Phil Pennock <pdpennock@users.sourceforge.net> | 2012-12-17 11:29:36 +0000 |
commit | 9d988a5e214e71e7d0165fe9683d3a6a466ca3b8 (patch) | |
tree | b0d9bc28a0059b175fae7cf2eeb5fa9008a560b7 /Etc/zsh-development-guide | |
parent | 82c75381ac011eb812551fe04a8fe475dec4f8d3 (diff) | |
download | zsh-9d988a5e214e71e7d0165fe9683d3a6a466ca3b8.tar.gz zsh-9d988a5e214e71e7d0165fe9683d3a6a466ca3b8.tar.xz zsh-9d988a5e214e71e7d0165fe9683d3a6a466ca3b8.zip |
30906: more Etc/zsh-development-guide tinkering
Diffstat (limited to 'Etc/zsh-development-guide')
-rw-r--r-- | Etc/zsh-development-guide | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Etc/zsh-development-guide b/Etc/zsh-development-guide index 201dda93a..9546f284a 100644 --- a/Etc/zsh-development-guide +++ b/Etc/zsh-development-guide @@ -39,7 +39,7 @@ Patches intelligently. Please make sure the filenames in the diff header are relative to the top-level directory of the zsh distribution; for example, it should say "Src/init.c" rather than "init.c" or - "zsh/Src/init.c". + "zsh/Src/init.c". Git-style naming of diffs is also acceptable. * Please put only one bug fix or feature enhancement in a single patch and only one patch per mail message. This helps me to multiplex the many @@ -52,9 +52,8 @@ Patches * Please test your patch and make sure it applies cleanly. It takes considerably more time to manually merge a patch into the baseline code. -* There is now a zsh patch archive. To have your patches appear in the - archive, send them to the mailing list with a Subject: line starting - with "PATCH:". +* By convention, patches should be sent with a Subject: line starting with + one of "PATCH:", "[PATCH]" or "[PATCH n/m]" (for a patch series). Testing ------- @@ -167,6 +166,11 @@ C coding style also #include other system headers. It *must not* #include any other module's headers or any other .pro files. +* The repository includes a `.editorconfig' file with whitespace/indent + control settings. Information about text editor plugins and this file + can be found at <http://editorconfig.org/>. + + Modules ------- |