* erc.el (erc-update-mode-line-buffer): Handle absent topic.
Fixes: debbugs:15377
This commit is contained in:
parent
6990c412ef
commit
95d0fa3a55
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-09-14 Vivek Dasmohapatra <vivek@etla.org>
|
||||
|
||||
* erc.el (erc-update-mode-line-buffer):
|
||||
Handle absent topic. (Bug#15377)
|
||||
|
||||
2013-09-13 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* erc-desktop-notifications.el (dbus-debug): Declare.
|
||||
|
|
|
@ -6189,7 +6189,7 @@ if `erc-away' is non-nil."
|
|||
?m (erc-format-channel-modes)
|
||||
?n (or (erc-current-nick) "")
|
||||
?N (erc-format-network)
|
||||
?o (erc-controls-strip erc-channel-topic)
|
||||
?o (or (erc-controls-strip erc-channel-topic) "")
|
||||
?p (erc-port-to-string erc-session-port)
|
||||
?s (erc-format-target-and/or-server)
|
||||
?S (erc-format-target-and/or-network)
|
||||
|
|
Loading…
Add table
Reference in a new issue