View | Details | Raw Unified | Return to bug 248607 | Differences between
and this patch

Collapse All | Expand All

(-)devel/treepy.el/Makefile (-2 / +1 lines)
Lines 1-8 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	treepy.el
3
PORTNAME=	treepy.el
4
DISTVERSION=	0.1.1
4
DISTVERSION=	0.1.2
5
PORTREVISION=	3
6
CATEGORIES=	devel elisp
5
CATEGORIES=	devel elisp
7
PKGNAMESUFFIX=	${EMACS_PKGNAMESUFFIX}
6
PKGNAMESUFFIX=	${EMACS_PKGNAMESUFFIX}
8
7
(-)devel/treepy.el/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1541056577
1
TIMESTAMP = 1597146952
2
SHA256 (volrath-treepy.el-0.1.1_GH0.tar.gz) = 9d91ef748e3f103101145cb3752a73d36d99c336c6634a7bdfaa3d78f0c9f747
2
SHA256 (volrath-treepy.el-0.1.2_GH0.tar.gz) = c35f956f5fdcb519a587476519f8ad6b422f8a617c5f0a57022ee24a0779333b
3
SIZE (volrath-treepy.el-0.1.1_GH0.tar.gz) = 125004
3
SIZE (volrath-treepy.el-0.1.2_GH0.tar.gz) = 125016
(-)devel/treepy.el/files/patch-97d955be198ead6380706704cbe0005fffaccf64 (-37 lines)
Lines 1-37 Link Here
1
From 97d955be198ead6380706704cbe0005fffaccf64 Mon Sep 17 00:00:00 2001
2
From: Yasuhiro KIMURA <yasu@utahime.org>
3
Date: Tue, 5 Nov 2019 16:13:24 +0900
4
Subject: [PATCH] Fix incompatibility with recent master branch of Emacs
5
6
http://git.savannah.gnu.org/cgit/emacs.git/commit/?id=0e4dd67aae8b10032317a29a6bd99d2d4a64c897
7
8
After above commit treepy.el isn't compatible with master branch of
9
Emacs.
10
11
For example byte-compiling it results in following error messages.
12
13
In treepy--with-loc:
14
treepy.el:157:35:Warning: `'node' is a malformed function
15
treepy.el:157:35:Warning: `'context' is a malformed function
16
treepy.el:160:51:Warning: `t' called as a function
17
treepy.el:231:1:Error: Invalid function: 'node
18
*** Error code 1
19
---
20
 treepy.el | 1 +
21
 1 file changed, 1 insertion(+)
22
23
diff --git treepy.el treepy.el
24
index c60ee9f..08ad93c 100644
25
--- treepy.el
26
+++ treepy.el
27
@@ -41,6 +41,7 @@
28
 ;;; Code:
29
 
30
 (require 'map)
31
+(require 'cl-lib)
32
 
33
 ;;; Walk (recursive tree traversal)
34
 
35
-- 
36
2.24.0
37

Return to bug 248607