Thank you for your bug tracking effort.
> >
> > 3) If this all didn't solve your problem, try this:
> >
> > a) M-x set-variable RET debug-on-quit RET
> > b) M-x eval-buffer RET (both in xtla.el and xtla-core.el)
> > c) M-x tla-start-project RET /path/to/project RET
> > [you're prompted for an archive name]
> > d) C-g
> > e) Post the backtrace here.
> >
>
> signal(quit nil)
> (condition-case reason (tla--name-read-internal prompt archive category
> branch version revision) ((quit error) (run-hooks ...) (signal ... ...)))
> (if tla--name-read-debug (tla--name-read-internal prompt archive category
> branch version revision) (condition-case reason (tla--name-read-internal
> prompt archive category branch version revision) (... ... ...)))
> (let ((tla--name-read-arguments ...)) (if tla--name-read-debug
> (tla--name-read-internal prompt archive category branch version revision)
> (condition-case reason ... ...)))
> tla-name-read("Import `/home/jao/prj/doc/xc' to: " "[EMAIL PROTECTED]"
> prompt prompt prompt)
> (let* ((base ...) (l ...) (project ...)) (let (...) (tla--run-tla-sync ...)
> (tla--run-tla-sync ...) (tla-inventory base t) (cons project
> default-directory)))
> tla-start-project()
> call-interactively(tla-start-project)
> execute-extended-command(nil)
> call-interactively(execute-extended-command)
>
Could you do the same after evaluating:
(setq tla--name-read-debug t)
and send the backtrace again?
As you can see in the backtrace, `condition-case' suppresses the important
information
about the trouble.
Regards,
Masatake YAMATO