From 4dc0026c5eb4b54590e91cf60b769d5d24acb60a Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Mon, 28 Jan 2013 12:26:00 +0200 Subject: [PATCH 1/2] Fix #261 - add missing dot in directory name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 084a0c1..c7b92f6 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ $ wget --no-check-certificate https://github.com/bbatsov/prelude/raw/master/util ```bash $ git clone git://github.com/bbatsov/prelude.git path/to/local/repo $ ln -s path/to/local/repo ~/.emacs.d -$ cd ~/emacs.d +$ cd ~/.emacs.d ``` You'd do well to replace `~/.emacs.d` with the value of From cab4b807666f5ff35bf7fa6ec65c2f94b147e332 Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Mon, 28 Jan 2013 12:30:22 +0200 Subject: [PATCH 2/2] Display truly "random" tip on startup --- core/prelude-core.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/prelude-core.el b/core/prelude-core.el index ede35f1..d30be09 100644 --- a/core/prelude-core.el +++ b/core/prelude-core.el @@ -336,6 +336,8 @@ and so on." (defun prelude-tip-of-the-day () (interactive) + ;; pick a new random seed + (random t) (message (concat "Prelude tip: " (nth (random (length prelude-tips)) prelude-tips))))