# HG changeset patch # User Stefan Monnier # Date 1271701991 14400 # Node ID 781bff25a5172f92425da908bc9c8fb9984476c5 # Parent 6c19884e68b9b2c9b1cd1ad1d44b0763d6326771 (completion-styles-alist): Fix up last merge and document `substring'. diff -r 6c19884e68b9 -r 781bff25a517 lisp/minibuffer.el --- a/lisp/minibuffer.el Mon Apr 19 13:05:12 2010 -0400 +++ b/lisp/minibuffer.el Mon Apr 19 14:33:11 2010 -0400 @@ -402,14 +402,17 @@ "Completion of multiple words, each one taken as a prefix. I.e. when completing \"l-co_h\" (where _ is the position of point), it will consider all completions candidates matching the glob - (substring - completion-substring-try-completion completion-substring-all-completions - "Completion of the string taken as a substring.") pattern \"l*-co*h*\". Furthermore, for completions that are done step by step in subfields, the method is applied to all the preceding fields that do not yet match. E.g. C-x C-f /u/mo/s TAB could complete to /usr/monnier/src. Additionally the user can use the char \"*\" as a glob pattern.") + (substring + completion-substring-try-completion completion-substring-all-completions + "Completion of the string taken as a substring. +I.e. when completing \"foo_bar\" (where _ is the position of point), +it will consider all completions candidates matching the glob +pattern \"*foo*bar*\".") (initials completion-initials-try-completion completion-initials-all-completions "Completion of acronyms and initialisms.