all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Drew Adams" <drew.adams@oracle.com>
To: "'Dani Moncayo'" <dmoncayo@gmail.com>
Cc: help-gnu-emacs@gnu.org
Subject: RE: Using the same custom file in two different OSes
Date: Mon, 14 Jan 2013 11:13:25 -0800	[thread overview]
Message-ID: <3F565B0F873C4BCCAA938FB0B136521E@us.oracle.com> (raw)
In-Reply-To: <CAH8Pv0gBRdWQUXyD8uwfa72U61PDMuWJ=Bt5gf8A1Y7EZmJkow@mail.gmail.com>

> That works, but I've observed that each time I save any customization,
> my custom file is regenerated with _all_ the customization loaded at
> that time, and the platform-specific stuff that I removed from my
> custom file is then reinserted.

That should not happen.  If that is the case then it is likely because your
custom file was restored to its original state after the session where you
modified it.  Try modifying it in a separate session - even an emacs -Q session.

Check your custom file after you have quit the Emacs session where you modified
it.  You need to have it be as you wanted it: without the stuff you removed.

You might need to fiddle a bit, to ensure that.  Once that is the case, the
stuff you removed will never be added again. 

> Therefore, in my init file I must put the platform-specific customization
> _after_ the loading of the custom file:
> 
>   (setq custom-file "my-custom-file.el")
>   (load custom-file)
>   (if (eq system-type 'windows-nt)
>       (custom-set-faces <windows-specific stuff>)
>     (custom-set-faces <ubuntu-specific stuff>)

That's OK, but you should not need that workaround.  See above.

> Thank you so much for your help.

You're welcome.  Keeping Customize stuff relegated to a separate file
(`custom-file') is something that I think everyone should consider doing.  It's
asking for trouble to mix code that you write with code that is automatically
written by Customize.

After separating out the Customize stuff, the question arises as when to load
`custom-file' in one's init file.  Often it is appropriate to load it at or near
the end, but it really depends on the libraries that your init file loads.

For instance, I load Icicles at the very end, just after loading `custom-file',
so that Icicles picks up certain option values and current key definitions.




  reply	other threads:[~2013-01-14 19:13 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-13 22:00 Using the same custom file in two different OSes Dani Moncayo
2013-01-13 22:18 ` Drew Adams
2013-01-14 18:46   ` Dani Moncayo
2013-01-14 19:13     ` Drew Adams [this message]
2013-01-14 19:42       ` Dani Moncayo
2013-01-14 21:55         ` Peter Dyballa
2013-01-14 23:00           ` Dani Moncayo
2013-01-15  8:25             ` Didier Verna
2013-01-15  8:42               ` Dani Moncayo
2013-01-14 22:05         ` Drew Adams
2013-01-16 21:03           ` Dani Moncayo
     [not found]           ` <mailman.17633.1358371586.855.help-gnu-emacs@gnu.org>
2013-01-17  8:43             ` Sebastien Vauban
2013-01-17 14:19               ` Drew Adams
2013-01-17 14:38                 ` Peter Dyballa
2013-01-17 15:22                   ` Dani Moncayo
2013-01-17 16:38                     ` Eli Zaretskii
2013-01-17 16:01                   ` Drew Adams
2013-01-17 16:33                   ` Eli Zaretskii
2013-01-17 16:32                 ` Eli Zaretskii
2013-01-17 16:57                   ` Drew Adams
2013-01-17 17:48                     ` Eli Zaretskii
2013-01-17 18:15                       ` Drew Adams
2013-01-17 18:44                         ` Eli Zaretskii
2013-01-15 13:27 ` Stefan Monnier
2013-01-15 20:27   ` Dani Moncayo
     [not found]   ` <mailman.17532.1358281671.855.help-gnu-emacs@gnu.org>
2013-01-16  8:58     ` Sebastien Vauban
2013-01-16 20:35       ` Dani Moncayo
2013-01-16 12:59     ` Jason Rumney

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=3F565B0F873C4BCCAA938FB0B136521E@us.oracle.com \
    --to=drew.adams@oracle.com \
    --cc=dmoncayo@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.