]> code.delx.au - gnu-emacs-elpa/commitdiff
Complete and document what a SYMBOL in `l' matches
authorMichael Heerdegen <michael_heerdegen@web.de>
Fri, 12 Feb 2016 20:47:47 +0000 (21:47 +0100)
committerMichael Heerdegen <michael_heerdegen@web.de>
Fri, 12 Feb 2016 20:47:47 +0000 (21:47 +0100)
packages/el-search/el-search.el

index 57e4505191c3c6a811134225ebfb111095c57b4f..05378a8a502b3f30f9eb3b0d841f9ff6e46741ec 100644 (file)
@@ -664,7 +664,9 @@ matches any of these expressions:
 
 (defun el-search--s (expr)
   (cond
-   ((symbolp expr) `(symbol ,(symbol-name expr)))
+   ((symbolp expr) `(or (symbol ,(symbol-name expr))
+                        (,'\` (,'quote    (,'\, (symbol ,(symbol-name expr)))))
+                        (,'\` (,'function (,'\, (symbol ,(symbol-name expr)))))))
    ((stringp expr) `(string ,expr))
    (t expr)))
 
@@ -678,8 +680,8 @@ with very brief input by using a specialized syntax.
 
 An LPAT can take the following forms:
 
-SYMBOL  Matches any symbol matched by SYMBOL's name interpreted as
-        a regexp
+SYMBOL  Matches any symbol S matched by SYMBOL's name interpreted
+        as a regexp.  Matches also 'S and #'S for any such S.
 STRING  Matches any string matched by STRING interpreted as a
         regexp
 _       Matches any list element