From ce01f956ff7681e28928a6022dd7403958f7c603 Mon Sep 17 00:00:00 2001 From: syl20bnr Date: Tue, 3 Mar 2015 03:58:29 -0500 Subject: [PATCH 1/3] Fix spacemacs loading with 'all for dotspacemacs-configuration-layers --- core/core-configuration-layer.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-configuration-layer.el b/core/core-configuration-layer.el index 7485ba1c9239..923a7e12794c 100644 --- a/core/core-configuration-layer.el +++ b/core/core-configuration-layer.el @@ -194,7 +194,7 @@ for that layer." "Declare the passed configuration LAYERS. LAYERS is a list of layer symbols." (reduce (lambda (acc elt) (push elt acc)) - (mapcar 'configuration-layer//declare-layer layers) + (mapcar 'configuration-layer//declare-layer (reverse layers)) :initial-value nil)) (defun configuration-layer//declare-layer (layer) From 7c8b71f19e220002c2ac559eeac564fecebbadea Mon Sep 17 00:00:00 2001 From: syl20bnr Date: Tue, 3 Mar 2015 04:01:05 -0500 Subject: [PATCH 2/3] Bind `Y` instead of `y` to copy commit hash in git-timemachine micro-state --- contrib/git/README.md | 1 + contrib/git/packages.el | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/contrib/git/README.md b/contrib/git/README.md index 8515f351293f..68e04d9a0f29 100644 --- a/contrib/git/README.md +++ b/contrib/git/README.md @@ -235,6 +235,7 @@ you can answer `y` with no issue. N | show previous commit p | show previous commit q | leave micro-state and git timemachine +Y | copy current commit hash ### Git gutter diff --git a/contrib/git/packages.el b/contrib/git/packages.el index a3418c2a9c60..6da38805957b 100644 --- a/contrib/git/packages.el +++ b/contrib/git/packages.el @@ -169,7 +169,7 @@ which require an initialization must be listed explicitly in the list.") ("p" git-timemachine-show-previous-revision) ("n" git-timemachine-show-next-revision) ("N" git-timemachine-show-previous-revision) - ("y" git-timemachine-kill-revision) + ("Y" git-timemachine-kill-revision) ("q" nil :exit t))))) ;; this mode is not up to date From 0e69d7f49d3624917ce07f97db0277feddd79d0b Mon Sep 17 00:00:00 2001 From: syl20bnr Date: Tue, 3 Mar 2015 04:01:31 -0500 Subject: [PATCH 3/3] Bump version to 0.64.1 --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index 47853828e5a7..05e37d15d6e3 100644 --- a/init.el +++ b/init.el @@ -9,7 +9,7 @@ ;; This file is not part of GNU Emacs. ;; ;;; License: GPLv3 -(defconst spacemacs-version "0.64.0" "Spacemacs version.") +(defconst spacemacs-version "0.64.1" "Spacemacs version.") (defconst spacemacs-emacs-min-version "24.3" "Minimal version of Emacs.") (defun spacemacs/emacs-version-ok ()