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

Lines Matching defs:copy

20 ;; You should have received a copy of the GNU General Public License
208 (define-key ediff-mode-map "a" 'ediff-copy-A-to-C)
209 (define-key ediff-mode-map "b" 'ediff-copy-B-to-C)
218 (define-key ediff-mode-map "ab" 'ediff-copy-A-to-B)
219 (define-key ediff-mode-map "ba" 'ediff-copy-B-to-A)
220 (define-key ediff-mode-map "ac" 'ediff-copy-A-to-C)
221 (define-key ediff-mode-map "bc" 'ediff-copy-B-to-C)
223 (define-key ediff-mode-map "ca" 'ediff-copy-C-to-A)
224 (define-key ediff-mode-map "cb" 'ediff-copy-C-to-B)
230 (define-key ediff-mode-map "a" 'ediff-copy-A-to-B)
231 (define-key ediff-mode-map "b" 'ediff-copy-B-to-A)
1946 If numerical prefix argument, copy the difference specified in the arg.
1947 Otherwise, copy the difference given by `ediff-current-difference'.
1966 (ediff-copy-diff ediff-current-difference
1972 (defun ediff-copy-A-to-B (arg)
1974 ARG is a prefix argument. If nil, copy the current difference region."
1978 (defun ediff-copy-B-to-A (arg)
1980 ARG is a prefix argument. If nil, copy the current difference region."
1984 (defun ediff-copy-A-to-C (arg)
1986 ARG is a prefix argument. If nil, copy the current difference region."
1990 (defun ediff-copy-B-to-C (arg)
1992 ARG is a prefix argument. If nil, copy the current difference region."
1996 (defun ediff-copy-C-to-B (arg)
1998 ARG is a prefix argument. If nil, copy the current difference region."
2002 (defun ediff-copy-C-to-A (arg)
2004 ARG is a prefix argument. If nil, copy the current difference region."
2014 (defun ediff-copy-diff (n from-buf-type to-buf-type
2015 &optional batch-invocation reg-to-copy)
2017 ;;(from-buf (if (not reg-to-copy) (ediff-get-buffer from-buf-type)))
2030 (if reg-to-copy
2032 (setq reg-to-copy (ediff-get-region-contents n from-buf-type ctrl-buf)))
2038 (if (string= reg-to-delete reg-to-copy)
2039 (setq saved-p nil) ; don't copy identical buffers
2040 ;; seems ok to copy
2049 (insert reg-to-copy)
2058 (error (message "ediff-copy-diff: %s %s"
2166 ;; can't rely on ediff-copy-diff to clear this vector, as the user might
4301 (if (fboundp 'copy-sequence)
4302 (defalias 'ediff-copy-list 'copy-sequence)
4303 (defun ediff-copy-list (list)