From 1c237106aae813d869d7ff31ddd96280c3878abc Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 4 Jan 2020 17:12:49 -0500 Subject: [PATCH] Don't pollute module help warnings with text props --- core/autoload/help.el | 1 + 1 file changed, 1 insertion(+) diff --git a/core/autoload/help.el b/core/autoload/help.el index ca8f1f18f..0ca4fb9d9 100644 --- a/core/autoload/help.el +++ b/core/autoload/help.el @@ -379,6 +379,7 @@ current file is in, or d) the module associated with the current major mode (see (cl-destructuring-bind (module-string path) (or (assoc (format "%s %s" category module) (doom--help-modules-list)) (user-error "'%s %s' is not a valid module" category module)) + (setq module-string (substring-no-properties module-string)) (unless (file-readable-p path) (error "Can't find or read %S module at %S" module-string path)) (cond ((not (file-directory-p path))