branch: elpa/helm commit 074167a03b83cefbbdb59d4792b1096f4f75e8d7 Author: Ta Quang Trung <taquangtrun...@gmail.com> Commit: Ta Quang Trung <taquangtrun...@gmail.com>
fix matching doc string --- helm-lib.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm-lib.el b/helm-lib.el index 6fb58294c5..05f03973b1 100644 --- a/helm-lib.el +++ b/helm-lib.el @@ -2024,7 +2024,7 @@ Directories expansion is not supported." (goto-char (point-min)) (when (re-search-forward "^;;;?\\(.*\\) ---? \\(.*\\)" (pos-eol) t) (setq desc (match-string-no-properties 2))) - (if (or (null desc) (string= "" desc) (string-match "\\`-*-" desc)) + (if (or (null desc) (string= "" desc) (string-match "\\`-\\*-" desc)) "Not documented" (car (split-string desc "-\\*-" nil "[ \t\n\r-]+"))))))