diff options
author | Keith Burns (alagalah) <alagalah@gmail.com> | 2016-08-04 09:27:23 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2016-08-04 17:06:01 +0000 |
commit | 114e8a91a0f18a6c622e71835faba79244707072 (patch) | |
tree | 093b32b345ea08af1e60b3ccb82ffe469b44ef4c | |
parent | 72d7223163b2a54735f5c900089c8683d6eed74e (diff) |
Update coding style for hash_foreach_mem
Change-Id: I2f336331463cedb2703150b003761e5c6e4431e8
Signed-off-by: Keith Burns (alagalah) <alagalah@gmail.com>
-rwxr-xr-x | build-root/emacs-lisp/fix-coding-style.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build-root/emacs-lisp/fix-coding-style.el b/build-root/emacs-lisp/fix-coding-style.el index 200c9ab3219..6010ac28244 100755 --- a/build-root/emacs-lisp/fix-coding-style.el +++ b/build-root/emacs-lisp/fix-coding-style.el @@ -47,6 +47,9 @@ (defun fix-hash-foreach-pair () (interactive) (fix-initializer "hash_foreach_pair *(")) +(defun fix-hash-foreach-mem () (interactive) + (fix-initializer "hash_foreach_mem *(")) + (defun fix-clib-fifo-foreach () (interactive) (fix-initializer "clib_fifo_foreach *(")) @@ -73,6 +76,7 @@ (fix-pool-foreach) (fix-hash-foreach) (fix-hash-foreach-pair) + (fix-hash-foreach-mem) (fix-foreach-ip-interface-address) (fix-clib-fifo-foreach) (fix-clib-bitmap-foreach) |