diff options
| author | Vivek Dasmohapatra | 2013-09-14 16:33:19 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-09-14 16:33:19 -0700 |
| commit | 95d0fa3a55974a6e9ef7f433d8ec8aeb9fd4a793 (patch) | |
| tree | d9bfbf93878f2aeaeebbb69105577e331cea9330 /lisp/erc/erc.el | |
| parent | 6990c412efd951bc8cc4e4986600893b17d7b148 (diff) | |
| download | emacs-95d0fa3a55974a6e9ef7f433d8ec8aeb9fd4a793.tar.gz emacs-95d0fa3a55974a6e9ef7f433d8ec8aeb9fd4a793.zip | |
* erc.el (erc-update-mode-line-buffer): Handle absent topic.
Fixes: debbugs:15377
Diffstat (limited to 'lisp/erc/erc.el')
| -rw-r--r-- | lisp/erc/erc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el index 0bfd21d6c3a..771b7016bcd 100644 --- a/lisp/erc/erc.el +++ b/lisp/erc/erc.el | |||
| @@ -6189,7 +6189,7 @@ if `erc-away' is non-nil." | |||
| 6189 | ?m (erc-format-channel-modes) | 6189 | ?m (erc-format-channel-modes) |
| 6190 | ?n (or (erc-current-nick) "") | 6190 | ?n (or (erc-current-nick) "") |
| 6191 | ?N (erc-format-network) | 6191 | ?N (erc-format-network) |
| 6192 | ?o (erc-controls-strip erc-channel-topic) | 6192 | ?o (or (erc-controls-strip erc-channel-topic) "") |
| 6193 | ?p (erc-port-to-string erc-session-port) | 6193 | ?p (erc-port-to-string erc-session-port) |
| 6194 | ?s (erc-format-target-and/or-server) | 6194 | ?s (erc-format-target-and/or-server) |
| 6195 | ?S (erc-format-target-and/or-network) | 6195 | ?S (erc-format-target-and/or-network) |