branch: elpa/helm
commit 218fa70297128d09410b5702c582feadb7b2b31e
Author: Thierry Volpiatto <thie...@posteo.net>
Commit: Thierry Volpiatto <thie...@posteo.net>

    Fix preselect regexp in *apropos
---
 helm-elisp.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helm-elisp.el b/helm-elisp.el
index b92028d669..ed892ea123 100644
--- a/helm-elisp.el
+++ b/helm-elisp.el
@@ -791,7 +791,7 @@ a string, i.e. the `symbol-name' of any existing symbol."
                   helm-apropos-function-list)
           :history 'helm-apropos-history
           :buffer "*helm apropos*"
-          :preselect (and default (concat "\\_<" (regexp-quote default) 
"\\_>"))
+          :preselect (and default (concat "^\\_<" (regexp-quote default) 
"\\_>"))
           :truncate-lines helm-apropos-show-short-doc)))
 
 

Reply via email to