all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* How to halt a loading file
@ 2008-03-28  2:43 orium
  2008-03-29 15:15 ` Kevin Rodgers
       [not found] ` <mailman.9577.1206803738.18990.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 3+ messages in thread
From: orium @ 2008-03-28  2:43 UTC (permalink / raw)
  To: help-gnu-emacs

Hi, everybody.

I am not a lisp coder, so this may have a obvious answer.

I need to halt .emacs in its execution:


(defun compile-emacs-config-file ()
  "Compiles ~/.emacs"
  (if (file-newer-than-file-p "~/.emacs" "~/.emacs.elc")
      (progn
	(setq byte-compile-warnings nil)
	(byte-compile-file "~/.emacs" t) ; Compile and load
	(setq byte-compile-warnings t)
	;HALT - I need the loading of this file to halt and don't execute
anything else of this file
	)))

(compile-emacs-config-file)


I can't put everything else in the else part of that if because I have
variables set by emacs customize browser, which probably only work if
it is not inside a function (my guess).

Thank you


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-03-29 16:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-28  2:43 How to halt a loading file orium
2008-03-29 15:15 ` Kevin Rodgers
     [not found] ` <mailman.9577.1206803738.18990.help-gnu-emacs@gnu.org>
2008-03-29 16:25   ` Pascal Bourguignon

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.