[PATCH] D49726: [emacs] Indent statement continuation to match clang-format

Andrew Savonichev via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 2 01:51:22 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL338686: [emacs] Indent statement continuation to match clang-format (authored by asavonic, committed by ).

Repository:
  rL LLVM

https://reviews.llvm.org/D49726

Files:
  llvm/trunk/utils/emacs/emacs.el


Index: llvm/trunk/utils/emacs/emacs.el
===================================================================
--- llvm/trunk/utils/emacs/emacs.el
+++ llvm/trunk/utils/emacs/emacs.el
@@ -1,6 +1,15 @@
 ;; LLVM coding style guidelines in emacs
 ;; Maintainer: LLVM Team, http://llvm.org/
 
+(defun llvm-lineup-statement (langelem)
+  (let ((in-assign (c-lineup-assignments langelem)))
+    (if (not in-assign)
+        '++
+      (aset in-assign 0
+            (+ (aref in-assign 0)
+               (* 2 c-basic-offset)))
+      in-assign)))
+
 ;; Add a cc-mode style for editing LLVM C and C++ code
 (c-add-style "llvm.org"
              '("gnu"
@@ -10,7 +19,8 @@
 	       (indent-tabs-mode . nil)
 	       (c-offsets-alist . ((arglist-intro . ++)
 				   (innamespace . 0)
-				   (member-init-intro . ++)))))
+				   (member-init-intro . ++)
+				   (statement-cont . llvm-lineup-statement)))))
 
 ;; Files with "llvm" in their names will automatically be set to the
 ;; llvm.org coding style.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D49726.158702.patch
Type: text/x-patch
Size: 991 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180802/97f94ec5/attachment.bin>


More information about the llvm-commits mailing list