help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Using the same custom file in two different OSes


From: Drew Adams
Subject: RE: Using the same custom file in two different OSes
Date: Mon, 14 Jan 2013 14:05:56 -0800

> Mmmm I'm afraid I'm unable to keep my custom file free of my
> platform-specific stuff. I've just seen this behavior:
> 1. I remove the `default' and `variable-pitch' lines from my 
> custom file.
> 2. I exit Emacs, start it again and verify that my custom file doesn't
> have the lines I removed.  Note that this session has loaded my init
> file, which first loads my custom file and then makes the
> platform-specific customization (in that order).
> 3. I do some customization (change the box-width property of the
> `mode-line' face, for example), and save it (C-x C-s).
> 4. I reopen my custom file and see that the two lines I removed in #1
> have been reinserted.
> 
> Changing the order (first do the platform-specific customization and
> the load the custom file) doesn't help.  The custom file is
> regenerated (when I save any customization) entirely, including the
> `default' and `variable-pitch' faces.

Right.

It's because your init file changes the faces but does not save those changes or
cancel them.  Then, when you save changes with C-x C-s, that saves the faces you
changed.

You want to either (a) do what you do now: redefine the faces after loading your
`custom-file' each time or (b) just tell Customize that the faces have _not_
been changed (even though they have), before hitting C-x C-s.  That is, just
tell Customize to ignore your changes.

For that, you can just add those faces to option `customize-customized-ignore'
(user preferences to ignore in `customize-customized').  For that you will need
to load library cus-edit+.el.
http://www.emacswiki.org/emacs-en/download/cus-edit%2b.el

If you do not want to do that, then you can use code like this in your init
file, just after setting the faces the way you want:

(face-spec-set THE-FACE (get THE-FACE 'face-defface-spec) 'reset)

That should work.  This should also do the trick, as an alternative:

(put THE-FACE 'saved-face nil)
(put THE-FACE 'saved-face-comment nil)
(put THE-FACE 'face-comment nil)
(put THE-FACE 'customized-face-comment nil)

Here's another tip: Get in the habit of using the `State' menu for the
particular option or face that you've changed, to save its changes, instead of
using C-x C-s, which saves all changes.

If you are worried about not catching some unsaved changes, you can use `M-x
customize-unsaved' before you quit Emacs.  You can even put that on
`kill-emacs-query-functions':

(add-hook 'kill-emacs-query-functions
          (lambda () (ignore-errors (customize-unsaved))))

Then, when you exit Emacs, if you have any unsaved changes, Customize will open
to them, so you can decide whether you want to save them.  Any faces or options
listed in option `customize-customized-ignore' (cus-edit+.el) are ignored for
this - any changes to them are silently ignored.

See also: http://emacswiki.org/CustomizingAndSaving

HTH.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]