Function: ediff-patch-return-code-ok
ediff-patch-return-code-ok is a byte-compiled function defined in
ediff-ptch.el.gz.
Signature
(ediff-patch-return-code-ok CODE)
Source Code
;; Defined in /usr/src/emacs/lisp/vc/ediff-ptch.el.gz
;; Traditional patch has weird return codes.
;; GNU and Posix return 1 if some hanks failed and 2 in case of trouble.
;; 0 is a good code in all cases.
;; We'll do the conservative thing.
(defun ediff-patch-return-code-ok (code)
(eq code 0))