diff options
author | Sean Allred <code@seanallred.com> | 2014-11-27 12:11:30 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-27 12:11:30 -0500 |
commit | 89a260220c60877c0766cbe79043ecb4dd1fa5f4 (patch) | |
tree | 92b644cad6c60f0fdcb37c305732d15f7e6d3ea6 /sx.el | |
parent | 1e730aa1b56f5343629225f60ec9c04f4dc4b703 (diff) |
Fix #110
Diffstat (limited to 'sx.el')
-rw-r--r-- | sx.el | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -3,7 +3,7 @@ ;; Copyright (C) 2014 Sean Allred ;; Author: Sean Allred <code@seanallred.com> -;; URL: https://github.com/vermiculus/stack-mode/ +;; URL: https://github.com/vermiculus/sx.el/ ;; Version: 0.1 ;; Keywords: help, hypermedia, tools ;; Package-Requires: ((emacs "24.1") (cl-lib "0.5") (json "1.3") (markdown-mode "2.0")) @@ -23,8 +23,7 @@ ;;; Commentary: -;; This file defines basic commands used by all other parts of -;; StackMode. +;; This file defines basic commands used by all other parts of SX. ;;; Code: (require 'tabulated-list) @@ -43,7 +42,7 @@ (defun sx-bug-report () "File a bug report about the `sx' package." (interactive) - (browse-url "https://github.com/vermiculus/stack-mode/issues/new")) + (browse-url "https://github.com/vermiculus/sx.el/issues/new")) ;;; Browsing filter @@ -100,7 +99,7 @@ is intentionally skipped." (defun sx-message (format-string &rest args) "Display FORMAT-STRING as a message with ARGS. See `format'." - (message "[stack] %s" (apply #'format format-string args))) + (message "[sx] %s" (apply #'format format-string args))) (defun sx-message-help-echo () "If there's a 'help-echo property under point, message it." @@ -265,13 +264,13 @@ is equivalent to ,@body))) (defcustom sx-init-hook nil - "Hook run when stack-mode initializes. + "Hook run when SX initializes. Run after `sx-init--internal-hook'." :group 'sx :type 'hook) (defvar sx-init--internal-hook nil - "Hook run when stack-mode initializes. + "Hook run when SX initializes. This is used internally to set initial values for variables such as filters.") |