diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-01-07 16:29:20 -0200 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-01-07 16:29:20 -0200 |
commit | 085c9d8d29aeb060b93db35e0c1076745ac9fe88 (patch) | |
tree | 1fe64043cd21d384ce7ae854bedd3630270e52f5 | |
parent | 5e29ea61e86c399cb966fc2299566d43694c2cfe (diff) |
Change sx--user- to sx-user--
-rw-r--r-- | sx-user.el | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -110,16 +110,16 @@ errors if you remove them." "Face used for user accept-rates." :group 'sx-user) -(defvar sx--user-format-property-alist +(defvar sx-user--format-property-alist '((?d face sx-user-name) (?r face sx-user-reputation) (?a face sx-user-accept-rate)) "Alist relating % constructs with text properties. -See `sx--user-format'.") +See `sx-user--format'.") ;;; Formatting function -(defun sx--user-format (format-string user) +(defun sx-user--format (format-string user) "Use FORMAT-STRING to format the user object USER. The value is a copy of FORMAT-STRING, but with certain constructs replaced by text that describes the specified USER: @@ -139,7 +139,7 @@ the `sx-button-user' category." (?l . ,\.link) (?r . ,\.reputation) (?a . ,\.accept_rate)) - sx--user-format-property-alist))) + sx-user--format-property-alist))) (if (> 0 (string-width .link)) (insert-text-button text ;; For visiting and stuff. |