From: Daiki Ueno Date: Tue, 19 Jan 2016 04:13:03 +0000 (+0900) Subject: Add references to developer.gnome.org X-Git-Url: https://code.delx.au/gnu-emacs-elpa/commitdiff_plain/f339477b115918042039ace4c61b0a17442e1105 Add references to developer.gnome.org --- diff --git a/gnome-c-style.el b/gnome-c-style.el index 9cfad6fb4..c39c0d187 100644 --- a/gnome-c-style.el +++ b/gnome-c-style.el @@ -22,6 +22,26 @@ ;; along with this program. If not, see ;; . +;;; Commentary: + +;; This package provides a minor mode to help editing C source code +;; in the GNOME C coding style: +;; +;; +;; +;; +;; It basically provides two functions: code alignment and snippet +;; insertion. To align code, use `gnome-c-style-align-region' to +;; line-up multiple function declarations in region, and +;; `gnome-c-style-align-at-point' to line-up arguments in the argument +;; list at point. +;; +;; To insert code snippet, use `gnome-c-snippet-insert'. The command +;; will let you choose a template to be inserted. This package also +;; provide commands to insert package/class names in upper case, +;; capital case, and lower case. For complete list of commands, do +;; M-x describe-bindings. + ;;; Code: (require 'gnome-c-align)