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

Lines Matching +defs:match +defs:beginning

98 ;; `pcomplete-match' are provided.  Called with one argument, they
229 value of each command line argument (which need not match the textual
230 representation of that argument), and BEG-POS gives the beginning
242 it acts more like zsh or 4nt, showing the first maximal match first,
494 "Return the beginning position of the INDEXth argument.
526 (defun pcomplete-match (regexp &optional index offset start)
527 "Like `string-match', but on the current completion argument."
530 (string-match regexp arg start)
533 (defun pcomplete-match-string (which &optional index offset)
534 "Like `match-string', but on the current completion argument."
537 (match-string which arg)
540 (defalias 'pcomplete-match-beginning 'match-beginning)
541 (defalias 'pcomplete-match-end 'match-end)
544 "Perform a programmable completion predicate match."
550 (string-match (concat "^" pred "$") arg)))
708 match (files not matching the REGEXP will be excluded).
709 If PREDICATE is non-nil, it will also be used to refine the match
728 (not (string-match regexp file)))))))
745 (string-match pcomplete-dir-ignore file))
747 (string-match pcomplete-file-ignore file))))))))
810 "Complete a set of OPTIONS, each beginning with PREFIX (?- by default).
904 beginning of every alternative. Not only does this make things less
1088 Returns `sole' if completed with the only completion match.
1120 ;; It's not unique, but user wants shortest match.
1200 ; (defalias 'pc-match 'pcomplete-match)
1201 ; (defalias 'pc-match-string 'pcomplete-match-string)
1202 ; (defalias 'pc-match-beginning 'pcomplete-match-beginning)
1203 ; (defalias 'pc-match-end 'pcomplete-match-end)