From: Dave Barach Date: Thu, 11 Aug 2016 20:03:03 +0000 (-0400) Subject: Bracket CLIB_PACKED(...) macros, which indent mangles X-Git-Tag: v16.09-rc1~28 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F52%2F2352%2F2;p=vpp.git Bracket CLIB_PACKED(...) macros, which indent mangles Change-Id: I39722d7b778e6e0dc5a2d12d005c102845159116 Signed-off-by: Dave Barach --- diff --git a/build-root/emacs-lisp/fix-coding-style.el b/build-root/emacs-lisp/fix-coding-style.el index 579f9c53558..4845ace5817 100755 --- a/build-root/emacs-lisp/fix-coding-style.el +++ b/build-root/emacs-lisp/fix-coding-style.el @@ -111,6 +111,9 @@ (defun fix-vnet-hw-interface-class () (interactive) (fix-initializer "VNET_HW_INTERFACE_CLASS *(")) +(defun fix-clib-packed () (interactive) + (fix-initializer "CLIB_PACKED *(")) + ;; Driver routine which runs the set of functions ;; defined above, as well as the bottom boilerplate function @@ -129,6 +132,7 @@ (fix-reply-macro2) (fix-vnet-device-class) (fix-vnet-hw-interface-class) + (fix-clib-packed) (insert-style-boilerplate) (if (boundp 'indent-offset-list) (makunbound 'indent-offset-list)))