Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Oct 2016 11:12:52 +0000 (UTC)
From:      Hajimu UMEMOTO <ume@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r423110 - in head/irc/riece: . files
Message-ID:  <201610021112.u92BCqH6030646@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ume
Date: Sun Oct  2 11:12:52 2016
New Revision: 423110
URL: https://svnweb.freebsd.org/changeset/ports/423110

Log:
  add patches for Emacs 25
  
  PR:		213156
  Submitted by:	Yasuhiro KIMURA <yasu [...] utahime.org>

Added:
  head/irc/riece/files/
  head/irc/riece/files/patch-lisp_riece-highlight.el   (contents, props changed)
  head/irc/riece/files/patch-lisp_riece-history.el   (contents, props changed)
  head/irc/riece/files/patch-lisp_riece-unread.el   (contents, props changed)
Modified:
  head/irc/riece/Makefile

Modified: head/irc/riece/Makefile
==============================================================================
--- head/irc/riece/Makefile	Sun Oct  2 11:08:59 2016	(r423109)
+++ head/irc/riece/Makefile	Sun Oct  2 11:12:52 2016	(r423110)
@@ -3,7 +3,7 @@
 
 PORTNAME=	riece
 PORTVERSION=	9.0.0
-PORTREVISION=	3
+PORTREVISION=	4
 PORTEPOCH=	1
 CATEGORIES=	irc elisp
 MASTER_SITES=	SAVANNAH

Added: head/irc/riece/files/patch-lisp_riece-highlight.el
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/irc/riece/files/patch-lisp_riece-highlight.el	Sun Oct  2 11:12:52 2016	(r423110)
@@ -0,0 +1,18 @@
+--- lisp/riece-highlight.el.orig	2011-04-04 06:43:24 UTC
++++ lisp/riece-highlight.el
+@@ -194,8 +194,13 @@
+   :group 'riece-highlight)
+ 
+ (unless (riece-facep 'riece-modeline-current-face)
+-  (make-face 'riece-modeline-current-face
+-	     "Face used for displaying the current channel in modeline.")
++  ;; In Emacs, set-face-doc-string is an alias to
++  ;; set-face-documentation, but we use the former since it is
++  ;; available in both Emacs and XEmacs.
++  (make-face 'riece-modeline-current-face)
++  (set-face-doc-string
++   'riece-modeline-current-face
++   "Face used for displaying the current channel in modeline.")
+   (if (featurep 'xemacs)
+       (set-face-parent 'riece-modeline-current-face 'modeline))
+   (set-face-foreground 'riece-modeline-current-face

Added: head/irc/riece/files/patch-lisp_riece-history.el
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/irc/riece/files/patch-lisp_riece-history.el	Sun Oct  2 11:12:52 2016	(r423110)
@@ -0,0 +1,18 @@
+--- lisp/riece-history.el.orig	2011-04-04 06:24:37 UTC
++++ lisp/riece-history.el
+@@ -65,8 +65,13 @@
+ (defvar riece-channel-list-history-face 'riece-channel-list-history-face)
+ 
+ (unless (riece-facep 'riece-modeline-history-face)
+-  (make-face 'riece-modeline-history-face
+-	     "Face used for displaying history channels in modeline.")
++  ;; In Emacs, set-face-doc-string is an alias to
++  ;; set-face-documentation, but we use the former since it is
++  ;; available in both Emacs and XEmacs.
++  (make-face 'riece-modeline-history-face)
++  (set-face-doc-string
++   'riece-modeline-history-face
++   "Face used for displaying history channels in modeline.")
+   (if (featurep 'xemacs)
+       (set-face-parent 'riece-modeline-history-face 'modeline))
+   (set-face-foreground 'riece-modeline-history-face

Added: head/irc/riece/files/patch-lisp_riece-unread.el
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/irc/riece/files/patch-lisp_riece-unread.el	Sun Oct  2 11:12:52 2016	(r423110)
@@ -0,0 +1,18 @@
+--- lisp/riece-unread.el.orig	2011-04-04 06:47:48 UTC
++++ lisp/riece-unread.el
+@@ -60,8 +60,13 @@
+ (defvar riece-channel-list-unread-face 'riece-channel-list-unread-face)
+ 
+ (unless (riece-facep 'riece-modeline-unread-face)
+-  (make-face 'riece-modeline-unread-face
+-	     "Face used for displaying unread channels in modeline.")
++  ;; In Emacs, set-face-doc-string is an alias to
++  ;; set-face-documentation, but we use the former since it is
++  ;; available in both Emacs and XEmacs.
++  (make-face 'riece-modeline-unread-face)
++  (set-face-doc-string
++   'riece-modeline-unread-face
++   "Face used for displaying unread channels in modeline.")
+   (if (featurep 'xemacs)
+       (set-face-parent 'riece-modeline-unread-face 'modeline))
+   (set-face-foreground 'riece-modeline-unread-face



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610021112.u92BCqH6030646>