• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/emacs-93/emacs/lisp/gnus/

Lines Matching defs:regexp

105   :type '(choice regexp (const nil)))
433 "Alist of group regexp and the charset for group names.
438 :type '(repeat (cons (regexp :tag "Group") (symbol :tag "Charset"))))
623 "r" gnus-group-mark-regexp
890 ["Mark regexp..." gnus-group-mark-regexp t]
1310 (defun gnus-group-prepare-flat (level &optional predicate lowest regexp)
1339 (or (not (stringp regexp))
1340 (string-match regexp group))
1374 regexp))
1384 gnus-level-killed ?K regexp))
1391 (defun gnus-group-prepare-flat-list-dead (groups level mark regexp)
1401 (or (not regexp)
1402 (and (stringp regexp) (string-match regexp group))
1403 (and (functionp regexp) (funcall regexp group))))
1416 (or (not regexp)
1417 (and (stringp regexp) (string-match regexp group))
1418 (and (functionp regexp) (funcall regexp group))))
1894 (defun gnus-group-mark-regexp (regexp)
1895 "Mark all groups that match some regexp."
1896 (interactive "sMark (regexp): ")
1901 (when (string-match regexp (setq group (gnus-info-group (pop alist))))
2854 The user will be prompted for a name, a regexp to match groups, and
2859 (read-string "Source groups (regexp): ")
2864 scores header regexp regexps)
2868 (while (not (equal "" (setq regexp (read-string
2869 (format "Match on %s (regexp): "
2871 (push (list regexp nil nil 'r) regexps))
2901 (concat "\\(^" (regexp-quote s) "$\\)"))
3953 (defun gnus-group-apropos (regexp &optional search-description)
3954 "List all newsgroups that have names that match a regexp."
3955 (interactive "sGnus apropos (regexp): ")
3963 (string-match regexp (symbol-name group))
3971 (and (string-match regexp (symbol-value group))
3975 (gnus-message 3 "No groups matched \"%s\"." regexp)
3996 (defun gnus-group-description-apropos (regexp)
3998 (interactive "sGnus description apropos (regexp): ")
4002 (gnus-group-apropos regexp t))
4005 (defun gnus-group-list-matching (level regexp &optional all lowest)
4019 (or level gnus-level-subscribed) (and all t) (or lowest 1) regexp)
4023 (defun gnus-group-list-all-matching (level regexp &optional lowest)
4031 (gnus-group-list-matching (or level gnus-level-killed) regexp t lowest))