Mercurial > emacs
changeset 72699:249ed2e06deb
* net/rcirc.el (rcirc-activity-string): Don't quote value in case
clause.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Thu, 07 Sep 2006 20:56:24 +0000 |
parents | b74e908df972 |
children | 155209293baf |
files | lisp/ChangeLog lisp/net/rcirc.el |
diffstat | 2 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Thu Sep 07 20:45:19 2006 +0000 +++ b/lisp/ChangeLog Thu Sep 07 20:56:24 2006 +0000 @@ -1,3 +1,8 @@ +2006-09-07 Magnus Henoch <mange@freemail.hu> + + * net/rcirc.el (rcirc-activity-string): Don't quote value in case + clause. + 2006-09-07 Micha,Ak(Bl Cadilhac <michael.cadilhac@lrde.org> * info.el (Info-index): Bind completion-ignore-case.
--- a/lisp/net/rcirc.el Thu Sep 07 20:45:19 2006 +0000 +++ b/lisp/net/rcirc.el Thu Sep 07 20:56:24 2006 +0000 @@ -1545,8 +1545,8 @@ (dolist (type rcirc-activity-types) (rcirc-add-face 0 (length s) (case type - ('nick 'rcirc-track-nick) - ('keyword 'rcirc-track-keyword)) + (nick 'rcirc-track-nick) + (keyword 'rcirc-track-keyword)) s))) s)) buffers ","))