summaryrefslogtreecommitdiff
path: root/misc/elscreen
diff options
context:
space:
mode:
authorYoichi NAKAYAMA <yoichi@FreeBSD.org>2002-06-15 07:05:19 +0000
committerYoichi NAKAYAMA <yoichi@FreeBSD.org>2002-06-15 07:05:19 +0000
commit5f1422a7d63f0db89584d15067a59c7df68d6347 (patch)
tree026d5d9005babe60392d0e6e07cb43afcde70db4 /misc/elscreen
parentRevive the nethack32 port. (diff)
Add patch to fix bugs.
* Fix typo in elscreen-show-list. * Avoid error when message contains "%" in elscreen-message. (I've sent same patch to the author.)
Notes
Notes: svn path=/head/; revision=61310
Diffstat (limited to 'misc/elscreen')
-rw-r--r--misc/elscreen/Makefile1
-rw-r--r--misc/elscreen/files/patch-elscreen.el25
2 files changed, 26 insertions, 0 deletions
diff --git a/misc/elscreen/Makefile b/misc/elscreen/Makefile
index 115b30c8d389..ccca88c2b509 100644
--- a/misc/elscreen/Makefile
+++ b/misc/elscreen/Makefile
@@ -7,6 +7,7 @@
PORTNAME= elscreen
PORTVERSION= 1.2.2
+PORTREVISION= 1
CATEGORIES= misc elisp
MASTER_SITES= ftp://ftp.morishima.net/pub/morishima.net/naoto/ElScreen/%SUBDIR%/
MASTER_SITE_SUBDIR= . old
diff --git a/misc/elscreen/files/patch-elscreen.el b/misc/elscreen/files/patch-elscreen.el
new file mode 100644
index 000000000000..7e45463ab33f
--- /dev/null
+++ b/misc/elscreen/files/patch-elscreen.el
@@ -0,0 +1,25 @@
+--- elscreen.el.orig Wed Sep 19 10:44:10 2001
++++ elscreen.el Sat Jun 15 15:55:59 2002
+@@ -479,7 +479,7 @@
+ (car (nth j elscreen-mode-to-screen-alist))
+ elscreen-mode-names)
+ (progn
+- (put-alist
++ (set-alist
+ 'elscreen-tmp-name-alist
+ i (cdr (nth j elscreen-mode-to-screen-alist)))
+ (setq flag nil)))
+@@ -590,9 +590,10 @@
+
+
+ (defun elscreen-message (message &optional sec)
+- (setq elscreen-last-message message)
+- (message message)
+- (sit-for (or sec 3))
++ (when message
++ (setq elscreen-last-message message)
++ (message "%s" message)
++ (sit-for (or sec 3)))
+ (message nil))
+
+ ;