Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 95138 - Fix for xtla 0.9_p38 to support new GNU Arch command "add-id"
Summary: Fix for xtla 0.9_p38 to support new GNU Arch command "add-id"
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Other
: High normal (vote)
Assignee: Emacs project
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-06-05 10:47 UTC by Matteo Settenvini
Modified: 2005-06-07 09:52 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Matteo Settenvini 2005-06-05 10:47:19 UTC
Starting with tla-1.3.1, the command:
	tla add filename
has been changed to
	tla add-id filename

This breaks the current version of xtla.
The following (simple) patch fixes the issue.

Cheers,
Matteo
---------------------------------------------------

--- xtla.el.bak 2005-06-05 19:42:29.000000000 +0200
+++ xtla.el     2005-06-05 19:42:37.000000000 +0200
@@ -5576,9 +5576,9 @@
       (setq id nil))
   (setq files (mapcar 'expand-file-name files))
   (if id
-      (tla--run-tla-sync `("add" "--id" ,id . ,files)
+      (tla--run-tla-sync `("add-id" "--id" ,id . ,files)
                          :finished 'tla--null-handler)
-    (tla--run-tla-sync `("add" . ,files)
+    (tla--run-tla-sync `("add-id" . ,files)
                        :finished 'tla--null-handler)))

 ;;
Comment 1 Matthew Kennedy (RETIRED) gentoo-dev 2005-06-06 15:39:17 UTC
Hi thanks for the bug report. Would a recent snapshot of XTLA from upstream also
fix this problem? (ie. support for the new TLA commands in 1.3)
Comment 2 Matteo Settenvini 2005-06-06 23:33:42 UTC
It appears that tla-1.0 fixes the issue. Marking this bug as dependent on 58940.
Comment 3 Matthew Kennedy (RETIRED) gentoo-dev 2005-06-07 07:44:30 UTC
I updated to app-emacs/xtla-1.0. This is for the GNU Emacs Herd only. I believe
Bug #58940 was for XEmacs. Was this bug meant for XEmacs?
Comment 4 Matteo Settenvini 2005-06-07 08:40:18 UTC
Nope, GNU Emacs related. I don't use XEmacs so I don't know how the "other side
of the Force" is.
Comment 5 Matthew Kennedy (RETIRED) gentoo-dev 2005-06-07 09:52:35 UTC
OK, I will remove the dependency on 58940 and resolve this bug as fixed. Thanks
for the bug report/update note.