emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r114283: * erc.el (erc-update-mode-line-buffer): Han


From: Glenn Morris
Subject: [Emacs-diffs] trunk r114283: * erc.el (erc-update-mode-line-buffer): Handle absent topic.
Date: Sat, 14 Sep 2013 23:33:25 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 114283
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/15377
author: Vivek Dasmohapatra <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sat 2013-09-14 16:33:19 -0700
message:
  * erc.el (erc-update-mode-line-buffer): Handle absent topic.
modified:
  lisp/erc/ChangeLog             changelog-20091113204419-o5vbwnq5f7feedwu-4305
  lisp/erc/erc.el                erc.el-20091113204419-o5vbwnq5f7feedwu-4346
=== modified file 'lisp/erc/ChangeLog'
--- a/lisp/erc/ChangeLog        2013-09-13 07:34:15 +0000
+++ b/lisp/erc/ChangeLog        2013-09-14 23:33:19 +0000
@@ -1,3 +1,8 @@
+2013-09-14  Vivek Dasmohapatra  <address@hidden>
+
+       * erc.el (erc-update-mode-line-buffer):
+       Handle absent topic.  (Bug#15377)
+
 2013-09-13  Glenn Morris  <address@hidden>
 
        * erc-desktop-notifications.el (dbus-debug): Declare.

=== modified file 'lisp/erc/erc.el'
--- a/lisp/erc/erc.el   2013-08-22 04:06:45 +0000
+++ b/lisp/erc/erc.el   2013-09-14 23:33:19 +0000
@@ -6189,7 +6189,7 @@
                 ?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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]