diff options
author | Sean Allred <code@seanallred.com> | 2014-11-27 12:33:28 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-27 12:33:28 -0500 |
commit | 37682ac58c419014db7782ba11bf898a90d09da9 (patch) | |
tree | 209daffd5eb4855c16334ca68e888fce1c01dd28 /sx.el | |
parent | 8ea884c9f417d8106813112598b4ab422e8352ed (diff) |
Fix #111
Diffstat (limited to 'sx.el')
-rw-r--r-- | sx.el | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -1,4 +1,4 @@ -;;; sx.el --- Core functions of the sx package. -*- lexical-binding: t; -*- +;;; sx.el --- core functions of the sx package. ;; Copyright (C) 2014 Sean Allred @@ -30,6 +30,13 @@ (defconst sx-version "0.1" "Version of the `sx' package.") +(defgroup sx nil + "Customization group for sx-question-mode." + :prefix "sx-" + :tag "SX" + :group 'applications) + + ;;; User commands (defun sx-version () @@ -312,4 +319,5 @@ If FORCE is non-nil, run them even if they've already been run." ;; Local Variables: ;; indent-tabs-mode: nil +;; lexical-binding: t ;; End: |