From b4fb3298cd071d56aa9a5fc6be51ae9871ad451e Mon Sep 17 00:00:00 2001 From: Oleh Krehel Date: Sun, 13 Aug 2017 19:58:09 +0200 Subject: [PATCH] hydra.el (hydra--hint-heads-wocol): Ignore dynamic hints Fixes #254 --- hydra.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hydra.el b/hydra.el index a517c7a..c8f9d92 100644 --- a/hydra.el +++ b/hydra.el @@ -501,7 +501,7 @@ Works for heads without a property :column." (dolist (h heads) (let ((val (assoc (cadr h) alist)) (pstr (hydra-fontify-head h body))) - (unless (null (cl-caddr h)) + (unless (not (stringp (cl-caddr h))) (if val (setf (cadr val) (concat (cadr val) " " pstr))