From owner-svn-ports-head@FreeBSD.ORG Tue May 21 11:35:55 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 0041B83C; Tue, 21 May 2013 11:35:54 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id E63989EF; Tue, 21 May 2013 11:35:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4LBZsFr057554; Tue, 21 May 2013 11:35:54 GMT (envelope-from kuriyama@svn.freebsd.org) Received: (from kuriyama@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4LBZspI057552; Tue, 21 May 2013 11:35:54 GMT (envelope-from kuriyama@svn.freebsd.org) Message-Id: <201305211135.r4LBZspI057552@svn.freebsd.org> From: Jun Kuriyama Date: Tue, 21 May 2013 11:35:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r318678 - in head/deskutils/howm: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 May 2013 11:35:55 -0000 Author: kuriyama Date: Tue May 21 11:35:54 2013 New Revision: 318678 URL: http://svnweb.freebsd.org/changeset/ports/318678 Log: Add a patch to work with emacs-24.3. Obtained from: http://howm.sourceforge.jp/a/howm-test130318-emacs24.3.patch Added: head/deskutils/howm/files/patch-gfunc.el (contents, props changed) Modified: head/deskutils/howm/Makefile Modified: head/deskutils/howm/Makefile ============================================================================== --- head/deskutils/howm/Makefile Tue May 21 11:35:49 2013 (r318677) +++ head/deskutils/howm/Makefile Tue May 21 11:35:54 2013 (r318678) @@ -2,7 +2,7 @@ PORTNAME= howm PORTVERSION= 1.4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils MASTER_SITES= http://howm.sourceforge.jp/a/ Added: head/deskutils/howm/files/patch-gfunc.el ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/howm/files/patch-gfunc.el Tue May 21 11:35:54 2013 (r318678) @@ -0,0 +1,21 @@ +--- gfunc.el.orig 2013-05-21 18:33:44.886328696 +0900 ++++ gfunc.el 2013-05-21 18:35:12.044799983 +0900 +@@ -109,14 +109,12 @@ + BODY is typically a set of `gfunc-def', and DISPATCHERS-VAR is used + as their dispatchers. + This macro cannot be nested." ++ ;; Be careful to etc/NEWS in Emacs 24.3 or ++ ;; http://www.masteringemacs.org/articles/2013/03/11/whats-new-emacs-24-3/ ++ ;; "Emacs tries to macroexpand interpreted (non-compiled) files during load." ++ (setq *gfunc-dispatchers-var* dispatchers-var) + `(eval-and-compile +- ;; I want to use let instead of setq. +- ;; But, let doesn't work when this file is byte-compiled. +- ;; I don't understand the problem around macro and byte-compilation. +- (setq *gfunc-dispatchers-var* (quote ,dispatchers-var)) + ,@body)) +-;; (let ((*gfunc-dispatchers-var* (quote ,dispatchers-var))) +-;; ,@body))) + + (provide 'gfunc) +