]> code.delx.au - gnu-emacs-elpa/blobdiff - packages/rich-minority/rich-minority.el
Fix some quoting problems in doc strings
[gnu-emacs-elpa] / packages / rich-minority / rich-minority.el
index 94e6c64be5e3a8081a035061e0afaea413454134..71bb159d3515952d1e171cb559acf01c22a6dfad 100644 (file)
@@ -1,14 +1,12 @@
 ;;; rich-minority.el --- Clean-up and Beautify the list of minor-modes.
 
-;; Copyright (C) 2014  <bruce.connor.am@gmail.com>
+;; Copyright (C) 2014, 2015 Free Software Foundation, Inc.
 
-;; Author: Artur Malabarba <bruce.connor.am@gmail.com>
-;; URL: http://github.com/Bruce-Connor/rich-minority
+;; Author: Artur Malabarba <emacs@endlessparentheses.com>
+;; URL: https://github.com/Malabarba/rich-minority
 ;; Package-Requires: ((cl-lib "0.5"))
-;; Version: 1.0
+;; Version: 1.0.1
 ;; Keywords: mode-line faces
-;; Prefix: rm
-;; Separator: -
 
 ;;; Commentary:
 ;;
 ;;; Code:
 (require 'cl-lib)
 
+(declare-function lm-version "lisp-mnt")
 (defun rm-bug-report ()
   "Opens github issues page in a web browser. Please send any bugs you find.
 Please include your Emacs and rich-minority versions."
   (interactive)
+  (require 'lisp-mnt)
   (message "Your rm-version is: %s, and your emacs version is: %s.\nPlease include this in your report!"
            (lm-version "rich-minority.el") emacs-version)
-  (browse-url "https://github.com/Bruce-Connor/rich-minority/issues/new"))
+  (browse-url "https://github.com/Malabarba/rich-minority/issues/new"))
 (defun rm-customize ()
   "Open the customization menu in the `rich-minority' group."
   (interactive)
@@ -113,7 +113,7 @@ Has three possible values:
   minor-mode list.
 
 If you'd like to use a list of regexps, simply use something like the following:
-    (setq rm-blacklist (mapconcat 'identity list-of-regexps \"\\\\|\"))
+    (setq rm-blacklist (mapconcat \\='identity list-of-regexps \"\\\\|\"))
 
 Don't forget to start each string with a blank space, as most
 minor-mode lighters start with a space."
@@ -140,7 +140,7 @@ minor-mode lighters start with a space."
   the minor-mode list.
 
 If you'd like to use a list of regexps, simply use something like the following:
-    (setq rm-whitelist (mapconcat 'identity list-of-regexps \"\\\\|\"))
+    (setq rm-whitelist (mapconcat \\='identity list-of-regexps \"\\\\|\"))
 
 Don't forget to start each string with a blank space, as most
 minor-mode lighters start with a space."
@@ -277,3 +277,7 @@ These properties take priority over those defined in
 (provide 'rich-minority)
 
 ;;; rich-minority.el ends here
+
+;; Local Variables:
+;; nameless-current-name: "rm"
+;; End: