]> code.delx.au - gnu-emacs-elpa/blobdiff - README.md
Rename to gnome-minor-mode
[gnu-emacs-elpa] / README.md
index 7f1af53f9fb5e3a47dba111bfb8047fb563ad06e..a8f06a5be0fdefe77f52c1048deec216c1d066d2 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-gobject-minor-mode
+gnome-minor-mode
 ======
 
 In the C coding style commonly used in GNOME, identifiers are written
@@ -6,7 +6,7 @@ in camel case and function arguments are aligned to the right end.
 That makes it a bit cumbersome to keep your code consistent with the
 style, even with align.el or plugins like yasnippet.
 
-gobject-minor-mode is an Emacs minor mode intended to help editing C
+gnome-minor-mode is an Emacs minor mode intended to help editing C
 source code in that style.  It mainly provides two features: text
 alignment and snippet insersion.
 
@@ -18,8 +18,8 @@ Install
 * Add the following lines to ~/.emacs/init.el:
 
 ```
-(autoload 'gobject-minor-mode "gobject-minor-mode" "GObject minor mode" t)
-(add-hook 'c-mode-hook 'gobject-minor-mode)
+(autoload 'gnome-minor-mode "gnome-minor-mode" "GNOME minor mode" t)
+(add-hook 'c-mode-hook 'gnome-minor-mode)
 ```
 
 Usage