summaryrefslogtreecommitdiff
path: root/lisp/erc/erc-log.el
diff options
context:
space:
mode:
authorDeniz Dogan <deniz@dogan.se>2012-10-06 19:05:04 -0700
committerGlenn Morris <rgm@gnu.org>2012-10-06 19:05:04 -0700
commitb68f89c4e3bc88e21f70da947875caec023aa2cb (patch)
tree0714d26786fbf5b9bed56522fb3cb69373323c8f /lisp/erc/erc-log.el
parent2255788d775663c13f57fc0617b6d27398ae769d (diff)
downloademacs-b68f89c4e3bc88e21f70da947875caec023aa2cb.tar.gz
* lisp/erc/erc-log.el (erc-generate-log-file-name-function): Clarify tags
Fixes: debbugs:11186
Diffstat (limited to 'lisp/erc/erc-log.el')
-rw-r--r--lisp/erc/erc-log.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/erc/erc-log.el b/lisp/erc/erc-log.el
index 9e6c587bd12..aa6b332eb90 100644
--- a/lisp/erc/erc-log.el
+++ b/lisp/erc/erc-log.el
@@ -114,11 +114,13 @@ If you want to write logs into different directories, make a
custom function which returns the directory part and set
`erc-log-channels-directory' to its name."
:group 'erc-log
- :type '(choice (const :tag "Long style" erc-generate-log-file-name-long)
- (const :tag "Long, but with network name rather than server"
+ :type '(choice (const :tag "#channel!nick <at> server:port.txt"
+ erc-generate-log-file-name-long)
+ (const :tag "#channel!nick <at> network.txt"
erc-generate-log-file-name-network)
- (const :tag "Short" erc-generate-log-file-name-short)
- (const :tag "With date" erc-generate-log-file-name-with-date)
+ (const :tag "#channel.txt" erc-generate-log-file-name-short)
+ (const :tag "#channel <at> date.txt"
+ erc-generate-log-file-name-with-date)
(function :tag "Other function")))
(defcustom erc-truncate-buffer-on-save nil