From: Keith Burns (alagalah) Date: Sat, 6 Aug 2016 18:03:59 +0000 (-0700) Subject: VPP-243 - Coding style changes - updated emacs LISP styleify X-Git-Tag: v16.09-rc1~67 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=5f3ca64a6238dc361c3afe1efc17acf168b03d12;p=vpp.git VPP-243 - Coding style changes - updated emacs LISP styleify Change-Id: I46ae6badcccd14c0e34f1a19187749980baba3ac Signed-off-by: Keith Burns (alagalah) --- diff --git a/build-root/emacs-lisp/fix-coding-style.el b/build-root/emacs-lisp/fix-coding-style.el index d79f2d99c52..3b5ff561af5 100755 --- a/build-root/emacs-lisp/fix-coding-style.el +++ b/build-root/emacs-lisp/fix-coding-style.el @@ -41,6 +41,9 @@ (defun fix-pool-foreach () (interactive) (fix-initializer "pool_foreach *(")) +(defun fix-pool-foreach-index () (interactive) + (fix-initializer "pool_foreach_index *(")) + (defun fix-hash-foreach () (interactive) (fix-initializer "hash_foreach *(")) @@ -76,6 +79,7 @@ (defun fd-io-styleify () (interactive) (fix-pool-foreach) + (fix-pool-foreach-index) (fix-hash-foreach) (fix-hash-foreach-pair) (fix-hash-foreach-mem)