aboutsummaryrefslogtreecommitdiff
path: root/sx.el
diff options
context:
space:
mode:
Diffstat (limited to 'sx.el')
-rw-r--r--sx.el13
1 files changed, 6 insertions, 7 deletions
diff --git a/sx.el b/sx.el
index e47e6e3..18cf166 100644
--- a/sx.el
+++ b/sx.el
@@ -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.")