From aa4509859e457ac8f3d92a1134aa8306883dddc5 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 20 Feb 2016 15:33:07 -0500 Subject: [PATCH] Fix mode-line-process type error on modeline --- core/core-ui.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/core-ui.el b/core/core-ui.el index 7029702d8..6fe934cc3 100644 --- a/core/core-ui.el +++ b/core/core-ui.el @@ -396,13 +396,11 @@ iedit." (concat (and (featurep 'face-remap) (/= text-scale-mode-amount 0) (format "(%+d) " text-scale-mode-amount)) mode-name - mode-line-process - )) + (if (stringp mode-line-process) mode-line-process))) :tight-right t) (spaceline-define-segment *buffer-size (powerline-buffer-size) - :when (not (eq major-mode 'org-mode)) :tight-right t :skip-alternate t)