• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/

Lines Matching +defs:parse +defs:result

91 ;;  3. It will evaluate the form passed to it, and throw the result
201 result will be shown in the minibuffer.
214 `pcomplete-parse-arguments-function'."
218 (defcustom pcomplete-parse-arguments-function
219 'pcomplete-parse-buffer-arguments
220 "*A function to call to parse the current line's arguments.
385 (result (pcomplete-do-complete pcomplete-stub completions)))
386 (and result
387 (not (eq (car result) 'listed))
388 (cdr result)
389 (pcomplete-insert-entry pcomplete-stub (cdr result)
390 (memq (car result)
566 (defun pcomplete-parse-buffer-arguments ()
588 (set (make-local-variable 'pcomplete-parse-arguments-function)
589 'pcomplete-parse-comint-arguments)
602 (defun pcomplete-parse-comint-arguments ()
623 (defun pcomplete-parse-arguments (&optional expand-p)
625 (let ((results (funcall pcomplete-parse-arguments-function)))
677 (result "")
684 (setq result (concat result replacement)))
687 (setq result (concat result "\\" (char-to-string char))))
689 (setq result (concat result (char-to-string char)))))
691 result)))
799 (when (pcomplete-parse-arguments pcomplete-expand-before-complete)
824 (let ((result (read-from-string options index)))
825 (setq index (cdr result)))
843 opt-char arg-char result)
848 (setq result
850 index (cdr result)
851 result (car result))
852 (setq result nil))
862 ((eq arg-char ?\() (eval result))))))
921 If FORM-ONLY is non-nil, only the result of FORM will be used to
1097 (let (result entry)
1107 (setq result 'sole))
1122 (setq result 'shortest))
1127 (setq result 'listed))
1130 (setq result 'partial)))))
1131 (cons result entry))))
1186 (defun pcomplete-process-result (cmd &rest args)
1187 "Call CMD using `call-process' and return the simplest result."