>
> To summarize my standpoint:
> * Use spaces, no tabs
> * Use emacs default indentation
>
So is it enough to put following code (explained in HACKING) my .emacs?
(defun rf-xtla-find-file-hook ()
(when (and (buffer-file-name)
(string-match "xtla" (buffer-file-name)))
(message "Enabled XTLA settings for buffer %s" (buffer-name))
(make-local-hook 'write-file-hooks)
(add-hook 'write-file-hooks 'delete-trailing-whitespace nil t)
(setq indent-tabs-mode nil)))
Now, my local copy is broken about indentation after star-merging Stefan's tree.
Is there way to revert my local copy in xtla?
I didn't commit the broken local copy to my archive. So I know that I can
restore
my clean local copy from my archive by tla get. Is there better way with xtla?