Christian Joergensen <[EMAIL PROTECTED]> writes:
> When trying to install the new tramp-package, I get the folloing errors:
> Setting up tramp (2.0.50-2) ...
> install/tramp: Ignoring emacsen flavor emacs
> install/tramp: Handling install for emacsen flavor emacs20
> While compiling toplevel forms in file
> /usr/share/emacs20/site-lisp/tramp/tramp.el:
> !! Invalid read syntax (("#"))
Whoops, looks like Tramp 2.0.50 broke compatibility with emacs20, I
think this change is the culprit:
(tramp-set-auto-save-file-modes): Use octal integer code #o600
instead of octal character code ?\600. The latter resulted in a
syntax error with XEmacs.
***************
*** 6993,6999 ****
;; auto-saved file belonging to another original file. This could
;; be a security threat.
(set-file-modes buffer-auto-save-file-name
! (or (file-modes bfn) ?\600)))))
(unless (or (> emacs-major-version 21)
(and (featurep 'xemacs)
--- 6949,6955 ----
;; auto-saved file belonging to another original file. This could
;; be a security threat.
(set-file-modes buffer-auto-save-file-name
! (or (file-modes bfn) #o600)))))
(unless (or (> emacs-major-version 21)
(and (featurep 'xemacs)
Michael?
--
,''`.
: :' : Romain Francoise <[EMAIL PROTECTED]>
`. `' http://people.debian.org/~rfrancoise/
`-
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]