From 104404348fdb54504e65c39182d405bdcee926fd Mon Sep 17 00:00:00 2001 From: Dave Barach Date: Tue, 3 Apr 2018 14:58:14 -0400 Subject: Fix bugs in emacs plugin templates use api_helper_macros.h declare plugin_main_t external in the header file declare plugin_main_t instance in plugin.c setup main_t->vlib_main, main_t->vnet_main in the init routine Change-Id: Ib8c742a60c63adfe9724447e1a2acc8c7723e90c Signed-off-by: Dave Barach --- extras/emacs/plugin-h-skel.el | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'extras/emacs/plugin-h-skel.el') diff --git a/extras/emacs/plugin-h-skel.el b/extras/emacs/plugin-h-skel.el index 8bf9b6fed23..94f60afcfa0 100644 --- a/extras/emacs/plugin-h-skel.el +++ b/extras/emacs/plugin-h-skel.el @@ -21,6 +21,7 @@ nil '(if (not (boundp 'plugin-name)) (setq plugin-name (read-string "Plugin name: "))) '(setq PLUGIN-NAME (upcase plugin-name)) +'(setq capital-oh-en "ON") " /* * " plugin-name ".h - skeleton vpp engine plug-in header file @@ -63,4 +64,13 @@ typedef struct { vlib_node_registration_t " plugin-name "_node; #endif /* __included_" plugin-name "_h__ */ + +/* + * fd.io coding-style-patch-verification: " capital-oh-en " + * + * Local Variables: + * eval: (c-set-style \"gnu\") + * End: + */ + ") -- cgit 1.2.3-korg