From 67d780f9af93b5c66f10f04673990c6dae937bde Mon Sep 17 00:00:00 2001 From: larstvei Date: Sat, 4 Jan 2014 10:11:46 +0100 Subject: [PATCH] fixing merge conflict? --- init.el | 6 ------ init.org | 14 -------------- 2 files changed, 20 deletions(-) diff --git a/init.el b/init.el index ef85ce6..8b9ade5 100644 --- a/init.el +++ b/init.el @@ -56,16 +56,10 @@ PACKAGE is installed and the current version is deleted." (<= days-between-updates (days-between (current-time-string) -<<<<<<< HEAD (buffer-substring-no-properties start end)))) ;; Remember to update the time-stamp. (when do-package-update-on-init (time-stamp)))))) -======= - (buffer-substring-no-properties start end))))))) - ;; Remember to update the time-stamp. - (time-stamp)) ->>>>>>> 4bf07b95098fd9e26f03b2217dc256200c136488 (when do-package-update-on-init (package-refresh-contents)) diff --git a/init.org b/init.org index f54f026..ac4ac54 100644 --- a/init.org +++ b/init.org @@ -94,20 +94,12 @@ (defvar do-package-update-on-init t) #+END_SRC -<<<<<<< HEAD The tricky part is figuring out when the last time the Emacs was updated! Here is a hacky way of doing it, using [[http://www.gnu.org/software/emacs/manual/html_node/emacs/Time-Stamps.html][time-stamps]]. By adding a time-stamp to the init file, we can search for it and determine wither or not to do an update. After that we must run the =time-stamp=-function to update the time-stamp. Note that if there is no time-stamp in the init-file then packages will be updated every time you start Emacs. -======= - The tricky part is figuring out when the last time the Emacs was opened! - Here is a hacky way of doing it, using [[http://www.gnu.org/software/emacs/manual/html_node/emacs/Time-Stamps.html][time-stamps]]. By adding a - time-stamp to the init file, we can search for it and determine wither or - not to do an update. After that we must run the =time-stamp=-function to - update the time-stamp. ->>>>>>> 4bf07b95098fd9e26f03b2217dc256200c136488 #+BEGIN_SRC emacs-lisp :tangle yes (require 'time-stamp) @@ -128,16 +120,10 @@ (<= days-between-updates (days-between (current-time-string) -<<<<<<< HEAD (buffer-substring-no-properties start end)))) ;; Remember to update the time-stamp. (when do-package-update-on-init (time-stamp)))))) -======= - (buffer-substring-no-properties start end))))))) - ;; Remember to update the time-stamp. - (time-stamp)) ->>>>>>> 4bf07b95098fd9e26f03b2217dc256200c136488 #+END_SRC Now we can use the function above to make sure packages are installed and