Module: libav Branch: master Commit: 3892e784f2225b32c87a5996347994f108fbd369
Author: Diego Biurrun <[email protected]> Committer: Diego Biurrun <[email protected]> Date: Sat Apr 14 19:24:16 2012 +0200 doc: Improve suggested Emacs settings for our coding style. Switch from changing global values to defining a separate C style and add appropriate settings for indenting assignments that span more than one line. --- doc/developer.texi | 14 ++++++++++---- 1 files changed, 10 insertions(+), 4 deletions(-) diff --git a/doc/developer.texi b/doc/developer.texi index 046743f..a4fdf3a 100644 --- a/doc/developer.texi +++ b/doc/developer.texi @@ -226,10 +226,16 @@ autocmd InsertEnter * match ForbiddenWhitespace /\t\|\s\+\%#\@@<!$/ For Emacs, add these roughly equivalent lines to your @file{.emacs.d/init.el}: @example -(setq c-default-style "k&r") -(setq-default c-basic-offset 4) -(setq-default indent-tabs-mode nil) -(setq-default show-trailing-whitespace t) +(c-add-style "libav" + '("k&r" + (c-basic-offset . 4) + (indent-tabs-mode nil) + (show-trailing-whitespace t) + (c-offsets-alist + (statement-cont . (c-lineup-assignments +))) + ) + ) +(setq c-default-style "libav") @end example @section Development Policy _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
