X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/1289a9cbad2c7019c10fb051f9d2b3099e9418e3..f10533854f4c7bb54247a11981191bf37b70cb36:/packages/gnome-c-style/gnome-c-snippet.el diff --git a/packages/gnome-c-style/gnome-c-snippet.el b/packages/gnome-c-style/gnome-c-snippet.el index 95c5f6df3..469ccf67f 100644 --- a/packages/gnome-c-style/gnome-c-snippet.el +++ b/packages/gnome-c-style/gnome-c-snippet.el @@ -436,7 +436,7 @@ G_DEFINE_" (if abstract "ABSTRACT_" "") "TYPE" (if code "WITH_CODE" "") " (" (gn t)) (defun gnome-c-snippet-insert-constructor (package class) - "Insert 'constructor' vfunc of GObjectClass for PACKAGE and CLASS." + "Insert `constructor' vfunc of GObjectClass for PACKAGE and CLASS." (interactive (gnome-c-snippet--read-package-and-class nil)) (let (arglist-start body-start) (insert "\ @@ -463,7 +463,7 @@ GObjectConstructParam *construct_properties)\n") (indent-region body-start (point)))) (defun gnome-c-snippet-insert-set_property (package class) - "Insert 'set_property' vfunc of GObjectClass for PACKAGE and CLASS." + "Insert `set_property' vfunc of GObjectClass for PACKAGE and CLASS." (interactive (gnome-c-snippet--read-package-and-class nil)) (let (arglist-start body-start) (insert "\ @@ -496,7 +496,7 @@ GParamSpec *pspec)\n") (indent-region body-start (point)))) (defun gnome-c-snippet-insert-get_property (package class) - "Insert 'get_property' vfunc of GObjectClass for PACKAGE and CLASS." + "Insert `get_property' vfunc of GObjectClass for PACKAGE and CLASS." (interactive (gnome-c-snippet--read-package-and-class nil)) (let (arglist-start body-start) (insert "\ @@ -529,7 +529,7 @@ GParamSpec *pspec)\n") (indent-region body-start (point)))) (defun gnome-c-snippet-insert-dispose (package class) - "Insert 'dispose' vfunc of GObjectClass for PACKAGE and CLASS." + "Insert `dispose' vfunc of GObjectClass for PACKAGE and CLASS." (interactive (gnome-c-snippet--read-package-and-class nil)) (let (body-start) (insert "\ @@ -546,7 +546,7 @@ static void (indent-region body-start (point)))) (defun gnome-c-snippet-insert-finalize (package class) - "Insert 'finalize' vfunc of GObjectClass for PACKAGE and CLASS." + "Insert `finalize' vfunc of GObjectClass for PACKAGE and CLASS." (interactive (gnome-c-snippet--read-package-and-class nil)) (let (body-start) (insert "\ @@ -563,7 +563,7 @@ static void (indent-region body-start (point)))) (defun gnome-c-snippet-insert-dispatch_properties_changed (package class) - "Insert 'dispatch_properties_changed vfunc of GObjectClass for + "Insert `dispatch_properties_changed' vfunc of GObjectClass for PACKAGE and CLASS." (interactive (gnome-c-snippet--read-package-and-class nil)) (let (arglist-start body-start) @@ -591,7 +591,7 @@ GParamSpec **pspecs)\n") (indent-region body-start (point)))) (defun gnome-c-snippet-insert-notify (package class) - "Insert 'notify' vfunc of GObjectClass for PACKAGE and CLASS." + "Insert `notify' vfunc of GObjectClass for PACKAGE and CLASS." (interactive (gnome-c-snippet--read-package-and-class nil)) (let (arglist-start body-start) (insert "\ @@ -616,7 +616,7 @@ GParamSpec *pspec)\n") (indent-region body-start (point)))) (defun gnome-c-snippet-insert-constructed (package class) - "Insert 'constructed' vfunc of GObjectClass for PACKAGE and CLASS." + "Insert `constructed' vfunc of GObjectClass for PACKAGE and CLASS." (interactive (gnome-c-snippet--read-package-and-class nil)) (let (body-start) (insert "\ @@ -633,7 +633,7 @@ static void (indent-region body-start (point)))) (defun gnome-c-snippet-insert-class-init (package class) - "Insert '_class_init' function for PACKAGE and CLASS." + "Insert `_class_init' function for PACKAGE and CLASS." (interactive (gnome-c-snippet--read-package-and-class nil)) (insert "\ static void @@ -643,7 +643,7 @@ static void ")) (defun gnome-c-snippet-insert-init (package class) - "Insert '_init' function for PACKAGE and CLASS." + "Insert `_init' function for PACKAGE and CLASS." (interactive (gnome-c-snippet--read-package-and-class nil)) (insert "\ static void