From: Kevin Rodgers <kevin.d.rodgers@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: version-control and make-backup-file-name-function
Date: Tue, 19 Aug 2008 01:41:09 -0600 [thread overview]
Message-ID: <g8dteg$dsn$1@ger.gmane.org> (raw)
In-Reply-To: <f13b3bf1-6dfb-4384-840b-ca2854cb922f@2g2000hsn.googlegroups.com>
Florian Lindner wrote:
> Hello,
>
> I'm bringing this up again, since my question in the old thread [1]
> produced no more answers...
>
> I have a customized backup function:
>
> (defun my-backup-file-name (fpath)
> (let (backup-root bpath)
> (setq backup-root "~/.emacs.d/backup")
> (setq bpath (concat backup-root fpath "~"))
> (make-directory (file-name-directory bpath) bpath)
> bpath
> )
> )
>
> combinded with the backup settings:
>
> (setq make-backup-file-name-function 'my-backup-file-name
> version-control t
> delete-old-versions t
> kept-new-versions 6
> kept-old-versions 2)
>
>
> When uncommenting make-backup-file-name-function it works with backups
> in the same dir as the original. With make-backup-file-name-function
> there are backups in the .emacs/backup dir but only the first version
> which is never updated. I suspect it's a problem with the creation of
> the backup file name for the n-th version.
>
> Anyone got an idea how to combine versioned backups and custom
> location?
Try setting backup-directory-alist instead of
make-backup-file-name-function.
--
Kevin Rodgers
Denver, Colorado, USA
next prev parent reply other threads:[~2008-08-19 7:41 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-08-15 16:20 version-control and make-backup-file-name-function Florian Lindner
2008-08-15 17:22 ` Thierry Volpiatto
2008-08-19 7:41 ` Kevin Rodgers [this message]
[not found] ` <mailman.17017.1219131677.18990.help-gnu-emacs@gnu.org>
2008-08-21 19:16 ` Florian Lindner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='g8dteg$dsn$1@ger.gmane.org' \
--to=kevin.d.rodgers@gmail.com \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.