Home | History | Annotate | Download | only in emacs

Lines Matching defs:fixup

43 (defun trybot-fixup-win ()
60 ; We want to fixup backslashes in path into forward slashes,
71 (defun trybot-fixup-maclin ()
77 (defun trybot-fixup (type-hint)
78 "Parse and fixup the contents of the current buffer as trybot output."
83 ;; Fixup paths.
89 (cond ((eq type-hint 'win) (trybot-fixup-win))
90 ((eq type-hint 'mac) (trybot-fixup-maclin))
91 ((eq type-hint 'linux) (trybot-fixup-maclin))
92 (t (trybot-fixup-win) (trybot-fixup-maclin)))
113 (trybot-fixup (process-get process 'type-hint)))))