comparison lisp/erc/erc-log.el @ 86109:c785443b57f8

(log): Fix typo in docstring.
author Juanma Barranquero <lekktu@gmail.com>
date Thu, 15 Nov 2007 16:46:52 +0000
parents e95712050fdc
children 107ccd98fa12
comparison
equal deleted inserted replaced
86108:322695549b66 86109:c785443b57f8
222 format is defined through a formatting function on 222 format is defined through a formatting function on
223 `erc-generate-log-file-name-function'. 223 `erc-generate-log-file-name-function'.
224 224
225 Since automatic logging is not always a Good Thing (especially if 225 Since automatic logging is not always a Good Thing (especially if
226 people say things in different coding systems), you can turn logging 226 people say things in different coding systems), you can turn logging
227 behaviour on and off with the variable `erc-enable-logging', which can 227 behavior on and off with the variable `erc-enable-logging', which can
228 also be a predicate function. To only log when you are not set away, use: 228 also be a predicate function. To only log when you are not set away, use:
229 229
230 \(setq erc-enable-logging 230 \(setq erc-enable-logging
231 (lambda (buffer) 231 (lambda (buffer)
232 (with-current-buffer buffer 232 (with-current-buffer buffer
233 (null (erc-away-time)))))" 233 (null (erc-away-time)))))"